this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Revert "Refactoring Privacy & Security, prep for 1.4.0"

This reverts commit 6446256ff49af68cf802752cb7106f62416f61ff.

+2 -6
+2 -6
background.js
··· 136 136 }) 137 137 } 138 138 139 - // Execute performAction when a tab is updated and the tab is a website. 139 + // Execute performAction when a tab is updated 140 140 tabs.onUpdated.addListener((tabId, changeInfo, tab) => { 141 - if ( 142 - changeInfo.status === "complete" && 143 - tab.active && 144 - (tab.url.startsWith("http://") || tab.url.startsWith("https://")) 145 - ) { 141 + if (changeInfo.status === "complete" && tab.active) { 146 142 performAction(tab) 147 143 } 148 144 })