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

44 lines
1.1 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": "6.2.3",
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
},
"author": "wanhose",
"background": {
"service_worker": "scripts/background.js"
},
2020-12-05 22:44:36 +00:00
"content_scripts": [
{
"all_frames": true,
"exclude_matches": [
"*://*.gfycat.com/*",
"*://*.mediathekviewweb.de/*",
2021-11-25 12:16:42 +00:00
"*://*.rundschau-online.de/*",
"*://*.youtube.com/embed/*",
"*://drive.google.com/*"
],
"js": ["scripts/content.js", "scripts/dialog.js"],
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_start"
2020-12-05 22:44:36 +00:00
}
],
"host_permissions": ["http://*/*", "https://*/*"],
"permissions": ["contextMenus", "scripting", "storage"],
"web_accessible_resources": [
{
"matches": ["http://*/*", "https://*/*"],
"resources": ["https://fonts.googleapis.com/css?family=Inter"]
}
]
2020-12-05 22:44:36 +00:00
}