diff --git a/webextension/js/background/backgroundLogic.js b/webextension/js/background/backgroundLogic.js index 2fd5c5c..a928d53 100644 --- a/webextension/js/background/backgroundLogic.js +++ b/webextension/js/background/backgroundLogic.js @@ -74,6 +74,11 @@ const backgroundLogic = { url = undefined; } + // We can't open these we just have to throw them away + if (new URL(url).protocol === "about:") { + return; + } + return browser.tabs.create({ url, active,