I want to listen to document complete event, so I added the following
lines into my background.html file:
chrome.tabs.onUpdated.addListener(function(tabId, changeInfo,
tab)
{
if(changeInfo.status == 'complete')
{
....
}
}
The problem is that I get this event for every frame in the page but I
need to get it for the whole page only.
Is there a way to know that?
--
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.