chrome-extension-template
Version:
A template util for creating chrome extension quickly
31 lines • 699 B
JSON
{
"manifest_version": 3,
"version": "1.0.0",
"name": "{{ name }}",
"author": "{{ author }}",
"description": "{{ description }}",
"homepage_url": "{{ homePageUrl }}",
"icons": {
"16": "icons/icon_16.png",
"32": "icons/icon_32.png",
"48": "icons/icon_48.png"
},
"permissions": [
"activeTab",
"scripting",
"declarativeContent"
],
"background": {
"service_worker": "background/index.js"
},
"options_page": "options/index.html",
"action": {
"default_icon": {
"16": "icons/icon_16.png",
"32": "icons/icon_32.png",
"48": "icons/icon_48.png"
},
"default_title": "{{ name }}",
"default_popup": "popup/index.html"
}
}