{ "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/dist/init.js", "content_scripts/dist/standards.js", "content_scripts/dist/defaults.js", "content_scripts/dist/instrument.js" ], "all_frames": true, "run_at": "document_start" } ], "background": { "scripts": [ "background_scripts/bootstrap.js" ] }, "options_ui": { "page": "config/index.html", "chrome_style": true } }