Last active
August 7, 2018 16:18
-
-
Save gartes/460f43b80153b148d74fd6962333dfa1 to your computer and use it in GitHub Desktop.
chrome.tabs
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.tabs.onUpdated | |
// Добавить слушателя события загрузки владки браузера | |
// info :{ | |
// status : "loading" || "complete" , | |
// favIconUrl : - is favIcon Url ( string ) , | |
// title : is - title txt ( string ) , | |
// } | |
chrome.tabs.onUpdated.addListener(function (tabId , info) { | |
console.log (info ) ; | |
if (info.status === 'complete') { | |
// your code ... | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment