From 47d1e0b9215feff0479878a3b627b6682c27c717 Mon Sep 17 00:00:00 2001 From: wanhose Date: Sat, 7 Oct 2023 12:47:44 +0200 Subject: [PATCH] chore(browser-extension): add translate.google.* to exclude_matches and upgrade version --- packages/browser-extension/src/manifest.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/browser-extension/src/manifest.json b/packages/browser-extension/src/manifest.json index 3fcdb87..fd8b09d 100644 --- a/packages/browser-extension/src/manifest.json +++ b/packages/browser-extension/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "Cookie Dialog Monster", - "version": "6.4.0", + "version": "6.4.1", "default_locale": "en", "description": "__MSG_appDesc__", "icons": { @@ -26,7 +26,17 @@ "*://*.sharepoint.com/*", "*://*.youtube.com/embed/*", "*://*.youtube-nocookie.com/embed/*", + "https://translate.google.ca/*", + "https://translate.google.co.in/*", + "https://translate.google.co.jp/*", + "https://translate.google.co.uk/*", + "https://translate.google.com.au/*", + "https://translate.google.com.br/*", "https://translate.google.com/*", + "https://translate.google.de/*", + "https://translate.google.es/*", + "https://translate.google.fr/*", + "https://translate.google.it/*", "https://www.cookie-dialog-monster.com/*" ], "js": ["scripts/content.js", "scripts/dialog.js"],