UNPKG

browser-plugin-creator

Version:

A modern scaffolding tool for creating browser extensions with ease

34 lines 649 B
{ "manifest_version": 3, "name": "{{name}}", "version": "1.0.0", "description": "{{description}}", "permissions": [ "activeTab", "storage", "scripting" ], "host_permissions": [ "<all_urls>" ], "devtools_page": "devtools.html", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": ["<all_urls>"], "js": ["content.js"], "run_at": "document_end" } ], "action": { "default_popup": "popup.html", "default_title": "{{name}}" }, "icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }