mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2026-01-30 09:48:12 +01:00
94 lines
2.0 KiB
JSON
94 lines
2.0 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Sample WebExtension",
|
|
"version": "0.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": [],
|
|
|
|
"__chrome__host_permissions": [],
|
|
|
|
"__chrome__optional_host_permissions": [
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
|
|
"__firefox__optional_host_permissions": [
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
|
|
"content_security_policy": {
|
|
"extension_pages": "script-src 'self'; object-src 'self';"
|
|
},
|
|
|
|
"__chrome|firefox__author": "abhijithvijayan",
|
|
|
|
"__firefox__browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "{754FB1AD-CC3B-4856-B6A0-7786F8CA9D17}",
|
|
"strict_min_version": "109.0"
|
|
}
|
|
},
|
|
|
|
"__chrome__minimum_chrome_version": "88",
|
|
|
|
"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"
|
|
},
|
|
|
|
"__chrome__options_page": "Options/options.html",
|
|
"options_ui": {
|
|
"page": "Options/options.html",
|
|
"open_in_tab": true
|
|
},
|
|
|
|
"background": {
|
|
"__chrome__service_worker": "assets/js/background.bundle.js",
|
|
"__chrome__type": "module",
|
|
"__firefox__scripts": ["assets/js/background.bundle.js"],
|
|
"__firefox__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://*/*"]
|
|
}
|
|
]
|
|
} |