Hi all,

Here is my issue : I want to create an extension for changing the
content of Gmail. To do so I want to wait that Gmail finishes to load.
The issue I have is that the loading process in Gmail is complex and
if I use :
chrome.tabs.onUpdated.addListener(function(tabId, changeInfo) {
  if (changeInfo.status == 'complete') {
    //...
  }
});

I receive a lot of 'complete' messages, even if the page is completely
loaded.
Do you know any clear methods to be sure that Gmail has finished
loading?

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


Reply via email to