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