52 líneas
1.0 KiB
JSON
52 líneas
1.0 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Classic Add-ons Archive",
|
|
"version": "3.0.0",
|
|
"description": "Catalog of classic Firefox add-ons created before WebExtensions apocalypse",
|
|
"author": "Off JustOff",
|
|
"homepage_url": "https://github.com/JustOff/ca-archive/",
|
|
|
|
"icons": {
|
|
"64": "skin/logo.png"
|
|
},
|
|
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"64": "skin/logo.png"
|
|
},
|
|
"default_title": "Classic Add-ons Archive"
|
|
},
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
|
|
"permissions": [
|
|
"storage",
|
|
"unlimitedStorage",
|
|
"tabs",
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"<all_urls>"
|
|
],
|
|
|
|
"web_accessible_resources": [
|
|
"content/ca-archive.html",
|
|
"content/*.js",
|
|
"content/*.wasm",
|
|
"content/db/*.sqlite",
|
|
"skin/*.css",
|
|
"skin/*.png",
|
|
"skin/*.gif"
|
|
],
|
|
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
|
|
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "ca-archive@Off.JustOff",
|
|
"strict_min_version": "57.0"
|
|
}
|
|
}
|
|
}
|