diff --git a/src/popup/Popup.vue b/src/popup/Popup.vue index 946fe7b..ef20f02 100644 --- a/src/popup/Popup.vue +++ b/src/popup/Popup.vue @@ -21,7 +21,7 @@ export default { }, async mounted() { - const [tab] = await chrome.tabs.query({ active: true, currentWindow: true }) + const [tab] = await browser.tabs.query({ active: true, currentWindow: true }) this.feedUrl = await browser.tabs.sendMessage(tab.id, {type: 'extractFeedUrl'}) }, }