Allow zooming mathematical formulas
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "MathML Zoom",
"version": "0.5.2resigned1",
"description": "Allow zooming mathematical formulas.",
"author": "Frédéric Wang",
"homepage_url": "https://github.com/fred-wang/webextension-mathml-zoom",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"css": [
"zoom.css"
],
"js": [
"zoom.js"
],
"run_at": "document_end"
}
],
"browser_specific_settings": {
"gecko": {
"id": "jid1-umYSoqNlFpsxzQ@jetpack"
}
}
}