mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2026-03-20 01:37:46 +01:00
83 lines
1.8 KiB
JSON
83 lines
1.8 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Sample WebExtension",
|
|
"version": "3.0.0",
|
|
"icons": {
|
|
"16": "assets/icons/favicon-16.png",
|
|
"32": "assets/icons/favicon-32.png",
|
|
"48": "assets/icons/favicon-48.png",
|
|
"128": "assets/icons/favicon-128.png"
|
|
},
|
|
"description": "Sample description",
|
|
"homepage_url": "https://github.com/abhijithvijayan/web-extension-starter",
|
|
"short_name": "Sample Name",
|
|
"permissions": [
|
|
"activeTab",
|
|
"storage"
|
|
],
|
|
"optional_permissions": [],
|
|
"optional_host_permissions": [
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
"content_security_policy": {
|
|
"extension_pages": "script-src 'self'; object-src 'self';"
|
|
},
|
|
"author": "abhijithvijayan",
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "{754FB1AD-CC3B-4856-B6A0-7786F8CA9D17}",
|
|
"strict_min_version": "112.0",
|
|
"data_collection_permissions": {
|
|
"required": [
|
|
"none"
|
|
],
|
|
"optional": []
|
|
}
|
|
}
|
|
},
|
|
"action": {
|
|
"default_popup": "Popup/popup.html",
|
|
"default_icon": {
|
|
"16": "assets/icons/favicon-16.png",
|
|
"32": "assets/icons/favicon-32.png",
|
|
"48": "assets/icons/favicon-48.png",
|
|
"128": "assets/icons/favicon-128.png"
|
|
},
|
|
"default_title": "tiny title"
|
|
},
|
|
"options_ui": {
|
|
"page": "Options/options.html",
|
|
"open_in_tab": true
|
|
},
|
|
"background": {
|
|
"scripts": [
|
|
"assets/js/background.bundle.js"
|
|
],
|
|
"type": "module"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"run_at": "document_start",
|
|
"matches": [
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
"css": [],
|
|
"js": [
|
|
"assets/js/contentScript.bundle.js"
|
|
]
|
|
}
|
|
],
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": [
|
|
"assets/*"
|
|
],
|
|
"matches": [
|
|
"http://*/*",
|
|
"https://*/*"
|
|
]
|
|
}
|
|
]
|
|
} |