web-api-manager/manifest.json
2017-10-12 14:00:04 -05:00

32 lines
694 B
JSON

{
"manifest_version": 2,
"name": "WebAPI Manager",
"version": "0.2",
"description": "Improves browser security by restricting page access to parts of the Web API.",
"permissions": [
"*://*/*",
"storage"
],
"content_scripts": [
{
"matches": ["*://*/*"],
"js": [
"content_scripts/init.js",
"content_scripts/standards.js",
"content_scripts/defaults.js",
"content_scripts/stub.js"
],
"all_frames": true,
"run_at": "document_start"
}
],
"background": {
"scripts": [
"background_scripts/bootstrap.js"
]
},
"options_ui": {
"page": "config/index.html",
"chrome_style": true
}
}