diff options
| -rw-r--r-- | extension/junction.js | 16 | ||||
| -rw-r--r-- | extension/manifest.json | 6 |
2 files changed, 14 insertions, 8 deletions
diff --git a/extension/junction.js b/extension/junction.js index 16bc9f3..a662f6c 100644 --- a/extension/junction.js +++ b/extension/junction.js @@ -56,14 +56,16 @@ const internals = { internals.getRoot().browserAction.disable(); const activeTabs = await internals.getActiveTabs(); - const execution = await internals.getRoot().tabs.executeScript(activeTabs[0].id, { - file: '/content_script.js' - }); - if (!execution[0]) { - internals.onDisconnect(); - } - }, + const execution = await internals.getRoot().tabs.executeScript(activeTabs[0].id, { + file: '/content_script.js' + }); + + if (!execution || !execution[0]) { + internals.onDisconnect(); + } + } + , hangUp() { diff --git a/extension/manifest.json b/extension/manifest.json index df3ecc4..2a5723a 100644 --- a/extension/manifest.json +++ b/extension/manifest.json @@ -21,5 +21,9 @@ "16": "icons/action-16.png", "32": "icons/action-32.png" } - } + }, + + "web_accessible_resources": [ + "sounds/tada.wav" + ] } |