From b0cbc085e1ffee3b5ac14313d646c4638973c8a7 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Thu, 14 Sep 2023 19:57:23 +0200 Subject: Properly allow multiple --- extension/junction.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'extension') diff --git a/extension/junction.js b/extension/junction.js index c3cb4e9..1d5f8a5 100644 --- a/extension/junction.js +++ b/extension/junction.js @@ -1,6 +1,6 @@ const internals = { promisesSupported: !!window.browser, - injectedScript: false, + injectedScript: {}, port: null, currentUrl: null, @@ -62,14 +62,15 @@ const internals = { const activeTabs = await internals.getActiveTabs(); internals.currentUrl = activeTabs[0].url; - if (!internals.injectedScript) { + const id = activeTabs[0].id; + if (!internals.injectedScript[id]) { const execution = await internals.getRoot().tabs.executeScript( activeTabs[0].id, { file: "/build/content_script.js", }, () => { - internals.injectedScript = true; + internals.injectedScript[id] = true; }, ); -- cgit