web-api-manager/add-on/manifest.json

76 lines
1.7 KiB
JSON

{
"manifest_version": 2,
"name": "WebAPI Manager",
"version": "0.9.4",
"description": "Improves browser security and privacy by controlling page access to the Web API.",
"icons": {
"48": "images/uic-48.png",
"128": "images/uic-128.png"
},
"browser_action": {
"default_popup": "popup/popup.html",
"default_icon": {
"48": "images/uic-48.png",
"128": "images/uic-128.png"
}
},
"permissions": [
"contextMenus",
"privacy",
"storage",
"tabs",
"cookies",
"unlimitedStorage",
"webNavigation",
"webRequest",
"activeTab",
"webRequestBlocking",
"<all_urls>"
],
"content_scripts": [
{
"js": [
"lib/third_party/js.cookie.js",
"lib/third_party/sjcl.js",
"lib/init.js",
"lib/standards.js",
"lib/pack.js",
"lib/cookieencoding.js",
"lib/proxyblock.js",
"content_scripts/instrument.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"match_about_blank": true,
"all_frames": true
}
],
"background": {
"scripts": [
"lib/third_party/URI.js",
"lib/third_party/sjcl.js",
"lib/init.js",
"lib/standards.js",
"lib/pack.js",
"lib/defaults.js",
"lib/storage.js",
"lib/domainmatcher.js",
"lib/cookieencoding.js",
"lib/proxyblock.js",
"lib/httpheaders.js",
"background_scripts/background.js"
]
},
"options_ui": {
"page": "config/index.html",
"open_in_tab": true
},
"applications": {
"gecko": {
"id": "{fb986c76-c042-49b8-85b5-c3dd68e83440}",
"strict_min_version": "52.0"
}
}
}