Can anyone tell me for chrome extensions how is possible for me to know if a new tab is created or modify.
I tried using Content Scripts but i dont realy know how it work.
Can anyone tell me for chrome extensions how is possible for me to know
Share
Use the chrome.tabs* API
http://code.google.com/chrome/extensions/tabs.html#event-onCreated
There is an onCreate method that is fired when new tabs are created 🙂