- const execution = await internals.getRoot().tabs.executeScript(
- activeTabs[0].id,
- {
- file: "/build/content_script.js",
- },
- () => {
- if (internals.getRoot().runtime.lastError) {
- internals.onDisconnect();
- }
- },
- );
+ if (!internals.injectedScript) {
+ const execution = await internals.getRoot().tabs.executeScript(
+ activeTabs[0].id,
+ {
+ file: "/build/content_script.js",
+ },
+ () => {
+ internals.injectedScript = true;
+ },
+ );
+ } else {
+ internals.getRoot().tabs.connect(activeTabs[0].id)
+ }