I have a very very simple bit of code in my (test) Chrome extension:
function test() { alert(\"In test!\"); } chrome.tabs.onUpdated.addLi
Twice is due to status being loading once and status being completed once. if you are unconcerned about the status, you may also try the onCreated event. That will be fired just once!