I have a very very simple bit of code in my (test) Chrome extension:
function test() { alert(\"In test!\"); } chrome.tabs.onUpdated.addLi
I solved this problem by checking the title of the tab when updated:
chrome.tabs.onUpdated.addListener(function (tabId, changeInfo, tab) { var title = changeInfo.title; if (title !== undefined) { doSomething(); } });