Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Hover zoom image",
"version": "1.0.1",
"description": "Activate this extension to automatically zoom images when you hover over them with your cursor",
"action": {
"default_title": "Hover zoom image ",
"default_popup": "popup.html",
"default_icon": {
"16": "Icon 16.png",
"32": "Icon 32.png",
"48": "Icon 48.png"
}
},
"icons": {
"64": "Icon 64.png",
"128": "Icon 128.png",
"2000": "Icon 2000.png"
},
"host_permissions": [
"*:\/\/*\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"permissions": [
"storage",
"notifications",
"activeTab"
]
}