简体   繁体   中英

How I can to see request headers of Flash in Extension Google Chrome?

I have extension for Chrome for seek a request and response headers. I am using webRequest.onSendHeaders , webRequest.onHeadersReceived and webRequest.onCompleted events for this. But i not see headers for load Flash. How i can do it?

Flash objects have PercentLoaded() method. Use it like this:

var testMovie = document.testMovie;

function waitUntilLoaded() 
{
    if(testMovie.PercentLoaded() == 100) {
        doSomething();//flash is loaded
    } else {
        setTimeout('waitUntilLoaded()',10);  
    }
}
waitUntilLoaded();

You will probably need a content script for this.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM