2017-09-12 22:34:25 +00:00
|
|
|
{
|
|
|
|
"manifest_version": 2,
|
|
|
|
"name": "WebAPI Manager",
|
2017-11-03 06:52:29 +00:00
|
|
|
"version": "0.9.8",
|
2017-10-14 22:41:55 +00:00
|
|
|
"description": "Improves browser security and privacy by controlling page access to the Web API.",
|
2017-10-14 05:41:49 +00:00
|
|
|
"icons": {
|
|
|
|
"48": "images/uic-48.png",
|
|
|
|
"128": "images/uic-128.png"
|
|
|
|
},
|
|
|
|
"browser_action": {
|
2017-10-14 21:16:24 +00:00
|
|
|
"default_popup": "popup/popup.html",
|
|
|
|
"default_icon": {
|
|
|
|
"48": "images/uic-48.png",
|
|
|
|
"128": "images/uic-128.png"
|
|
|
|
}
|
2017-10-14 05:41:49 +00:00
|
|
|
},
|
2017-09-12 22:34:25 +00:00
|
|
|
"permissions": [
|
2017-10-14 21:16:24 +00:00
|
|
|
"contextMenus",
|
|
|
|
"privacy",
|
2017-10-13 22:30:57 +00:00
|
|
|
"storage",
|
|
|
|
"tabs",
|
2017-10-18 04:11:59 +00:00
|
|
|
"cookies",
|
2017-10-14 21:16:24 +00:00
|
|
|
"unlimitedStorage",
|
|
|
|
"webNavigation",
|
2017-10-13 22:30:57 +00:00
|
|
|
"webRequest",
|
2017-10-14 21:16:24 +00:00
|
|
|
"activeTab",
|
2017-10-13 22:30:57 +00:00
|
|
|
"webRequestBlocking",
|
2017-10-14 21:16:24 +00:00
|
|
|
"<all_urls>"
|
2017-09-12 22:34:25 +00:00
|
|
|
],
|
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"js": [
|
2017-10-23 08:29:59 +00:00
|
|
|
"lib/third_party/js.cookie.js",
|
|
|
|
"lib/third_party/sjcl.js",
|
2017-10-13 22:30:57 +00:00
|
|
|
"lib/init.js",
|
2017-10-21 15:49:56 +00:00
|
|
|
"lib/standards.js",
|
2017-10-13 22:30:57 +00:00
|
|
|
"lib/pack.js",
|
2017-10-20 15:09:12 +00:00
|
|
|
"lib/cookieencoding.js",
|
|
|
|
"lib/proxyblock.js",
|
|
|
|
"content_scripts/instrument.js"
|
2017-09-12 22:34:25 +00:00
|
|
|
],
|
2017-10-26 04:02:43 +00:00
|
|
|
"matches": [
|
|
|
|
"<all_urls>"
|
|
|
|
],
|
|
|
|
"run_at": "document_start",
|
|
|
|
"match_about_blank": true,
|
|
|
|
"all_frames": true
|
2017-09-12 22:34:25 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"background": {
|
|
|
|
"scripts": [
|
2017-10-23 08:29:59 +00:00
|
|
|
"lib/third_party/URI.js",
|
|
|
|
"lib/third_party/sjcl.js",
|
2017-10-13 22:30:57 +00:00
|
|
|
"lib/init.js",
|
2017-10-21 15:49:56 +00:00
|
|
|
"lib/standards.js",
|
2017-10-13 22:30:57 +00:00
|
|
|
"lib/pack.js",
|
2017-10-20 15:09:12 +00:00
|
|
|
"lib/defaults.js",
|
2017-10-14 20:24:18 +00:00
|
|
|
"lib/storage.js",
|
2017-10-14 21:16:24 +00:00
|
|
|
"lib/domainmatcher.js",
|
2017-10-20 15:09:12 +00:00
|
|
|
"lib/cookieencoding.js",
|
|
|
|
"lib/proxyblock.js",
|
|
|
|
"lib/httpheaders.js",
|
2017-10-14 18:52:56 +00:00
|
|
|
"background_scripts/background.js"
|
2017-09-12 22:34:25 +00:00
|
|
|
]
|
2017-10-12 19:00:04 +00:00
|
|
|
},
|
|
|
|
"options_ui": {
|
2017-10-22 00:39:17 +00:00
|
|
|
"page": "config/index.html",
|
|
|
|
"open_in_tab": true
|
2017-10-26 04:02:43 +00:00
|
|
|
},
|
|
|
|
"applications": {
|
|
|
|
"gecko": {
|
|
|
|
"id": "{fb986c76-c042-49b8-85b5-c3dd68e83440}",
|
|
|
|
"strict_min_version": "52.0"
|
|
|
|
}
|
2017-10-12 19:00:04 +00:00
|
|
|
}
|
2017-10-13 22:30:57 +00:00
|
|
|
}
|