From 2d3db78d5735a0135d19936b929b7ae2fee75991 Mon Sep 17 00:00:00 2001 From: wanhose Date: Sun, 8 Oct 2023 12:23:30 +0200 Subject: [PATCH] chore(browser-extension): add codesandbox.io to exclude_matches --- packages/browser-extension/src/manifest.json | 25 ++++++++++---------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/packages/browser-extension/src/manifest.json b/packages/browser-extension/src/manifest.json index 4a74400..3be4839 100644 --- a/packages/browser-extension/src/manifest.json +++ b/packages/browser-extension/src/manifest.json @@ -23,21 +23,22 @@ "all_frames": true, "exclude_matches": [ "*://*.googleapis.com/embed/*", + "*://*.codesandbox.io/*", "*://*.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/*" + "*://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://*/*"],