Created
November 29, 2017 20:05
-
-
Save fwextensions/fb7d5717a100dacb50b00c9fe8f21e7b to your computer and use it in GitHub Desktop.
Chrome event page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chrome.runtime.onStartup.addListener(() => { | |
var timer = null; | |
chrome.tabs.onUpdated.addListener(() => { | |
clearTimeout(timer); | |
timer = setTimeout(() => { | |
addListeners(); | |
}, 50); | |
}); | |
); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment