mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
114 lines
2.5 KiB
JSON
114 lines
2.5 KiB
JSON
{
|
|
"__chrome__manifest_version": 3,
|
|
"__firefox__manifest_version": 2,
|
|
"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",
|
|
|
|
"__chrome__permissions": [
|
|
"activeTab",
|
|
"storage"
|
|
],
|
|
|
|
"__chrome__optional_permissions": [],
|
|
|
|
"__chrome__host_permissions": [],
|
|
|
|
"__chrome__optional_host_permissions": [
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
|
|
"__firefox__permissions": [
|
|
"activeTab",
|
|
"storage",
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
|
|
"__chrome__content_security_policy": {
|
|
"extension_pages": "script-src 'self'; object-src 'self';"
|
|
},
|
|
"__firefox__content_security_policy": "script-src 'self'; object-src 'self'",
|
|
|
|
"__chrome|firefox__author": "abhijithvijayan",
|
|
|
|
"__firefox__applications": {
|
|
"gecko": {
|
|
"id": "{754FB1AD-CC3B-4856-B6A0-7786F8CA9D17}"
|
|
}
|
|
},
|
|
|
|
"__chrome__minimum_chrome_version": "88",
|
|
|
|
"__chrome__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"
|
|
},
|
|
|
|
"__firefox__browser_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",
|
|
"browser_style": false
|
|
},
|
|
|
|
"__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"
|
|
]
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"run_at": "document_start",
|
|
"matches": [
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
"css": [],
|
|
"js": [
|
|
"assets/js/contentScript.bundle.js"
|
|
]
|
|
}
|
|
],
|
|
|
|
"__firefox__web_accessible_resources": [
|
|
"assets/*"
|
|
],
|
|
|
|
"__chrome__web_accessible_resources": [
|
|
{
|
|
"resources": [ "assets/*" ],
|
|
"matches": [ "https://*/*" ]
|
|
}
|
|
]
|
|
} |