20 lines
446 B
JSON
20 lines
446 B
JSON
{
|
|
"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"]
|
|
}
|
|
]
|
|
}
|