From 64014cfdf7933bd5991a1717d7e2f110d4222e1f Mon Sep 17 00:00:00 2001 From: ManeraKai Date: Thu, 9 Jun 2022 20:29:05 +0300 Subject: Fixed thing in reddit. Fixed bug in incognito, Fixed localise module error. Bump => 2.1.0 --- src/pages/background/background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pages/background') 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 }); } } ); -- cgit 1.4.1