UNPKG

browser-extension-react-scripts

Version:

Configuration and scripts for Create React Browser Extension.

53 lines 1.15 kB
{ "name": "Getting Started Example", "version": "1.0", "description": "Build an Extension!", "permissions": [ "activeTab", "storage", "http://127.0.0.1/" ], "__firefox__browser_specific_settings": { "gecko": { "id": "addon@example.com" } }, "__chrome__options_page": "options.html", "__firefox__options_ui": { "page": "options.html", "browser_style": true }, "background": { "scripts": [ "/static/js/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*://*/*" ], "js": [ "/static/js/content-script-example.js" ] } ], "browser_action": { "default_icon": { "16": "logo/get_started16.png", "32": "logo/get_started32.png", "48": "logo/get_started48.png", "128": "logo/get_started128.png" }, "default_title": "Getting Started Example", "default_popup": "popup.html" }, "icons": { "16": "logo/get_started16.png", "32": "logo/get_started32.png", "48": "logo/get_started48.png", "128": "logo/get_started128.png" }, "manifest_version": 2 }