We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4583d7e commit a1f11e4Copy full SHA for a1f11e4
src/pages/background/index.ts
@@ -52,7 +52,7 @@ Browser.tabs.onActivated.addListener((activeInfo) => {
52
});
53
54
Browser.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
55
- if (tab.active) {
+ if (tab.active && changeInfo.status === "complete") {
56
const promise = new Promise(async () => {
57
await badgeSearch(tab.url, tabId);
58
0 commit comments