browser-plugin-creator
Version:
A modern scaffolding tool for creating browser extensions with ease
51 lines (45 loc) • 969 B
JSON
{
"manifest_version": 3,
"name": "{{name}}",
"version": "{{version}}",
"description": "{{description}}",
"author": "{{author}}",
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https://*/*",
"http://*/*"
],
"content_scripts": [
{
"matches": ["https://*/*", "http://*/*"],
"js": ["content.js"],
"css": ["content.css"],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "{{name}}",
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"web_accessible_resources": [
{
"resources": ["injected.js"],
"matches": ["https://*/*", "http://*/*"]
}
]
}