1
0
Fork 0
zoomaccel/manifest.json

21 lines
446 B
JSON
Raw Normal View History

2025-01-21 15:25:47 -06:00
{
"manifest_version": 3,
"name": "Zoom Accelerator",
"version": "1.0",
"description": "Adds customizable smooth zoom acceleration to Chrome",
"permissions": ["activeTab", "storage"],
"host_permissions": ["<all_urls>"],
"action": {
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
]
}