Skip to content

Instantly share code, notes, and snippets.

@gartes
Last active August 7, 2018 16:18
Show Gist options
  • Save gartes/460f43b80153b148d74fd6962333dfa1 to your computer and use it in GitHub Desktop.
Save gartes/460f43b80153b148d74fd6962333dfa1 to your computer and use it in GitHub Desktop.
chrome.tabs
// 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