cookie-dialog-monster/packages/browser-extension/src/manifest.json

79 lines
2.2 KiB
JSON
Raw Normal View History

2020-04-19 13:02:18 +00:00
{
"manifest_version": 3,
2021-10-05 07:00:23 +00:00
"name": "Cookie Dialog Monster",
"version": "7.0.5",
2020-12-05 22:44:36 +00:00
"default_locale": "en",
"description": "__MSG_appDesc__",
"icons": {
2021-04-11 09:45:21 +00:00
"16": "assets/icons/16.png",
"48": "assets/icons/48.png",
"128": "assets/icons/128.png"
2020-12-05 22:44:36 +00:00
},
"action": {
2021-04-11 09:45:21 +00:00
"default_icon": "assets/icons/disabled.png",
2021-10-05 07:00:23 +00:00
"default_title": "Cookie Dialog Monster"
2020-12-05 22:44:36 +00:00
},
"options_page": "options.html",
2020-12-05 22:44:36 +00:00
"author": "wanhose",
"background": {
"scripts": ["scripts/background.js"],
"service_worker": "scripts/background.js"
},
2024-07-07 11:35:43 +00:00
"browser_specific_settings": {
"gecko": {
"id": "{77e2c00b-e173-4604-863d-01645d8d2826}",
"strict_min_version": "101.0"
}
},
2020-12-05 22:44:36 +00:00
"content_scripts": [
{
"all_frames": true,
"exclude_matches": [
"*://*.bauhaus.cz/*",
"*://*.codesandbox.io/*",
"*://*.facebook.com/*",
"*://*.googleapis.com/embed/*",
"*://*.messenger.com/*",
2024-02-24 18:13:40 +00:00
"*://*.office365.com/*",
"*://*.officeapps.live.com/*",
"*://*.sharepoint.com/*",
"*://*.suite.office.com/*",
2023-06-13 15:24:49 +00:00
"*://*.youtube-nocookie.com/embed/*",
"*://*.youtube.com/embed/*",
"*://translate.google.ca/*",
"*://translate.google.co.in/*",
"*://translate.google.co.jp/*",
"*://translate.google.co.uk/*",
"*://translate.google.com.au/*",
"*://translate.google.com.br/*",
"*://translate.google.com/*",
"*://translate.google.de/*",
"*://translate.google.es/*",
"*://translate.google.fr/*",
"*://translate.google.it/*",
"*://www.cookie-dialog-monster.com/*"
],
"js": ["scripts/content.js", "scripts/dialog.js"],
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_start"
2020-12-05 22:44:36 +00:00
}
],
"declarative_net_request": {
"rule_resources": [
{
"enabled": true,
"id": "ruleset",
"path": "rules.json"
}
]
},
"host_permissions": ["http://*/*", "https://*/*"],
"permissions": ["contextMenus", "declarativeNetRequest", "scripting", "storage"],
"web_accessible_resources": [
{
"matches": ["http://*/*", "https://*/*"],
"resources": ["https://fonts.googleapis.com/css?family=Inter"]
}
]
2020-12-05 22:44:36 +00:00
}