diff options
Diffstat (limited to 'ext/fg/js/content-script-main.js')
-rw-r--r-- | ext/fg/js/content-script-main.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/fg/js/content-script-main.js b/ext/fg/js/content-script-main.js index 42f95e24..5dee4c56 100644 --- a/ext/fg/js/content-script-main.js +++ b/ext/fg/js/content-script-main.js @@ -27,7 +27,7 @@ api.forwardLogsToBackend(); await yomichan.backendReady(); - const {frameId} = await api.frameInformationGet(); + const {tabId, frameId} = await api.frameInformationGet(); if (typeof frameId !== 'number') { throw new Error('Failed to get frameId'); } @@ -39,6 +39,7 @@ popupFactory.prepare(); const frontend = new Frontend({ + tabId, frameId, popupFactory, depth: 0, |