Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Webpage Magnifier",
"description": "See the web more clearly with Webpage Magnifier.",
"version": "1.5",
"action": {
"default_icon": "images\/19disabled.png",
"default_popup": "popup.html",
"default_title": "Webpage Magnifier"
},
"icons": {
"16": "images\/19.png",
"48": "images\/48.png",
"128": "images\/128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"css\/cs_styles.css",
"css\/evenZoom.css"
],
"js": [
"libs\/jquery-1.12.0.min.js",
"libs\/evenZoom.js",
"scripts\/actions.js",
"scripts\/tools.js",
"scripts\/cs_screenCapture.js",
"scripts\/cs_bootstrap.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "bs_main.js"
},
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"css\/cs_styles.css",
"css\/evenZoom.css",
"css\/rangeSlider.css"
],
"matches": [
"<all_urls>"
]
}
],
"commands": {
"toggleWebpageMagnifier": {
"suggested_key": {
"default": "Ctrl+Shift+Z",
"mac": "Command+Shift+Z"
},
"description": "Toggle Webpage Magnifier extension"
}
}
}