{ "manifest_version": 2, "name": "My extension", "short_name": "Myext", "version": "0.0.0", "author": "various", "description": "Kill the web&js", "applications": { "gecko": { "id": "{6fe13369-88e9-440f-b837-5012fb3bedec}", "strict_min_version": "60.0" } }, "icons":{ "64": "icons/myext.png" }, "permissions": [ "contextMenus", "webRequest", "webRequestBlocking", "activeTab", "notifications", "sessions", "storage", "tabs", "" ], "browser_action": { "browser_style": true, "default_icon": { "64": "icons/myext.png" }, "default_title": "Myext", "default_popup": "html/display-panel.html" }, "options_ui": { "page": "html/options.html", "open_in_tab": true }, "web_accessible_resources": [ ], "background": { "page": "background/background.html" }, "content_scripts": [ { "run_at": "document_start", "matches": [""], "match_about_blank": true, "all_frames": true, "js": [ "common/browser.js", "common/connection_types.js", "content/page_actions.js", "content/main.js" ] } ] }