browser-plugin-creator
Version:
A modern scaffolding tool for creating browser extensions with ease
48 lines • 921 B
JSON
{
"manifest_version": 3,
"name": "{{name}}",
"version": "1.0.0",
"description": "{{description}}",
"permissions": [
"activeTab",
"storage",
"sidePanel",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"css": ["content.css"],
"run_at": "document_end"
}
],
"side_panel": {
"default_path": "sidepanel.html"
},
"action": {
"default_title": "{{name}}",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"web_accessible_resources": [
{
"resources": ["inject.js"],
"matches": ["<all_urls>"]
}
]
}