web-api-manager/manifest.json

57 lines
1.2 KiB
JSON
Raw Normal View History

2017-09-12 22:34:25 +00:00
{
"manifest_version": 2,
"name": "WebAPI Manager",
2017-10-14 18:52:56 +00:00
"version": "0.5",
2017-09-12 22:34:25 +00:00
"description": "Improves browser security by restricting page access to parts of the Web API.",
"icons": {
"48": "images/uic-48.png",
"128": "images/uic-128.png"
},
"browser_action": {
"default_popup": "popup/popup.html"
},
2017-09-12 22:34:25 +00:00
"permissions": [
2017-10-13 22:30:57 +00:00
"<all_urls>",
"storage",
"tabs",
"webRequest",
"webRequestBlocking",
"webNavigation",
"activeTab"
2017-09-12 22:34:25 +00:00
],
"content_scripts": [
{
"matches": ["*://*/*"],
"js": [
2017-10-13 22:30:57 +00:00
"lib/init.js",
"lib/pack.js",
"lib/js.cookie.js",
"content_scripts/dist/standards.js",
"content_scripts/dist/instrument.js"
2017-09-12 22:34:25 +00:00
],
"all_frames": true,
"run_at": "document_start"
}
],
2017-10-13 22:30:57 +00:00
"web_accessible_resources": [
"lib/init.js",
"lib/js.cookie.js",
"lib/storage.js",
"lib/URI.js"
],
2017-09-12 22:34:25 +00:00
"background": {
"scripts": [
2017-10-13 22:30:57 +00:00
"lib/init.js",
"lib/pack.js",
"lib/storage.js",
"lib/URI.js",
"content_scripts/dist/standards.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": {
"page": "config/index.html",
"chrome_style": true
}
2017-10-13 22:30:57 +00:00
}