Fix directly opening a URL in new tab not triggering content script

This commit is contained in:
2025-04-23 18:14:28 +04:00
parent 539d34e82a
commit 1f15f51b4a
2 changed files with 3 additions and 4 deletions

View File

@@ -1,8 +1,7 @@
browser.tabs.onUpdated.addListener(async (tabId, changeInfo, tab) => {
browser.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
if (changeInfo.status !== 'complete') {
browser.pageAction.hide(tabId);
await browser.storage.local.remove(`nl_tab_${sender.tab.id}`);
browser.storage.local.remove(`nl_tab_${sender.tab.id}`);
return;
}
}, { properties: ["status"] });