web-api-manager/manifest.json

32 lines
719 B
JSON
Raw Normal View History

2017-09-12 22:34:25 +00:00
{
"manifest_version": 2,
"name": "WebAPI Manager",
2017-10-12 19:00:04 +00:00
"version": "0.2",
2017-09-12 22:34:25 +00:00
"description": "Improves browser security by restricting page access to parts of the Web API.",
"permissions": [
"*://*/*",
"storage"
],
"content_scripts": [
{
"matches": ["*://*/*"],
"js": [
"content_scripts/dist/init.js",
"content_scripts/dist/standards.js",
"content_scripts/dist/defaults.js",
"content_scripts/dist/instrument.js"
2017-09-12 22:34:25 +00:00
],
"all_frames": true,
"run_at": "document_start"
}
],
"background": {
"scripts": [
"background_scripts/bootstrap.js"
]
2017-10-12 19:00:04 +00:00
},
"options_ui": {
"page": "config/index.html",
"chrome_style": true
}
}