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/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"
|
|
|
|
]
|
2017-10-12 19:00:04 +00:00
|
|
|
},
|
|
|
|
"options_ui": {
|
|
|
|
"page": "config/index.html",
|
|
|
|
"chrome_style": true
|
|
|
|
}
|
|
|
|
}
|