web-api-manager/manifest.json

50 lines
1 KiB
JSON
Raw Normal View History

2017-09-12 22:34:25 +00:00
{
"manifest_version": 2,
"name": "WebAPI Manager",
"version": "0.4",
2017-09-12 22:34:25 +00:00
"description": "Improves browser security by restricting page access to parts of the Web API.",
"permissions": [
2017-10-13 22:30:57 +00:00
"http://*/*", "https://*/*",
"<all_urls>",
"storage",
"tabs",
"webRequest",
"webRequestBlocking",
"webNavigation"
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-09-12 22:34:25 +00:00
"background_scripts/bootstrap.js"
]
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
}