about summary refs log tree commit diff stats
path: root/src/pages/background
diff options
context:
space:
mode:
authorManeraKai <manerakai@protonmail.com>2022-06-09 20:29:05 +0300
committerManeraKai <manerakai@protonmail.com>2022-06-09 20:29:05 +0300
commit64014cfdf7933bd5991a1717d7e2f110d4222e1f (patch)
tree5c5fbb8a23d487b35cd59370b1086e6984c02a82 /src/pages/background
parentFixed maps. RTL to default instances checklist. Unify not working in chrmoium (diff)
downloadlibredirect-64014cfdf7933bd5991a1717d7e2f110d4222e1f.zip
Fixed thing in reddit. Fixed bug in incognito, Fixed localise module error. Bump => 2.1.0
Diffstat (limited to 'src/pages/background')
-rw-r--r--src/pages/background/background.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/background/background.js b/src/pages/background/background.js
index 0815096b..87e13ad3 100644
--- a/src/pages/background/background.js
+++ b/src/pages/background/background.js
@@ -139,7 +139,7 @@ browser.tabs.onCreated.addListener(
   tab => {
     if (tab.incognito) {
       incognitoList.push(tab.id);
-      if (incognitoList.length == 1) browser.tabs.create({ url: browser.runtime.getURL("/pages/background/incognito.html") });
+      if (incognitoList.length == 1) browser.tabs.create({ url: browser.runtime.getURL("/pages/background/incognito.html"), active: false });
     }
   }
 );