Hi Tiago,

You can take a look at the docs and see how it is defined:
http://code.google.com/chrome/extensions/tabs.html#event-onUpdated

<http://code.google.com/chrome/extensions/tabs.html#event-onUpdated>Basically,
in your background.html page you can do the following:

  chrome.tabs.onUpdated.addListener(function(tabId, info) {
    if (info.status === 'loading')
      console.log('Loading url ... ' + info.url)
  });

-- 
Mohamed Mansour

On Wed, Dec 9, 2009 at 4:19 PM, Tiago Tavolari <[email protected]> wrote:

> Can somebody create a tab onupdated example extension, just to see how it
> works?
>
> The full package, if possible.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Chromium-extensions" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<chromium-extensions%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/chromium-extensions?hl=en.
>

--

You received this message because you are subscribed to the Google Groups 
"Chromium-extensions" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/chromium-extensions?hl=en.


Reply via email to