49 lines
1 KiB
JSON
49 lines
1 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "WebAPI Manager",
|
|
"version": "0.4",
|
|
"description": "Improves browser security by restricting page access to parts of the Web API.",
|
|
"permissions": [
|
|
"http://*/*", "https://*/*",
|
|
"<all_urls>",
|
|
"storage",
|
|
"tabs",
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"webNavigation"
|
|
],
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*/*"],
|
|
"js": [
|
|
"lib/init.js",
|
|
"lib/pack.js",
|
|
"lib/js.cookie.js",
|
|
"content_scripts/dist/standards.js",
|
|
"content_scripts/dist/instrument.js"
|
|
],
|
|
"all_frames": true,
|
|
"run_at": "document_start"
|
|
}
|
|
],
|
|
"web_accessible_resources": [
|
|
"lib/init.js",
|
|
"lib/js.cookie.js",
|
|
"lib/storage.js",
|
|
"lib/URI.js"
|
|
],
|
|
"background": {
|
|
"scripts": [
|
|
"lib/init.js",
|
|
"lib/pack.js",
|
|
"lib/storage.js",
|
|
"lib/URI.js",
|
|
"content_scripts/dist/standards.js",
|
|
"background_scripts/bootstrap.js"
|
|
]
|
|
},
|
|
"options_ui": {
|
|
"page": "config/index.html",
|
|
"chrome_style": true
|
|
}
|
|
}
|