我怎么能抓住每个请求并看到加载时间?

时间:2015-09-11 20:02:13

标签: firefox firefox-addon

我想在Chrome开发者工具中执行类似网络标签的操作。 但是使用Observer我可以捕获每个启动请求,即使你使用它:

    observerService.addObserver(this, "http-on-examine-response", false);
    observerService.addObserver(this, "http-on-examine-cached-response", false);
    observerService.addObserver(this, "http-on-modify-request", false);
    observerService.addObserver(this, "http-on-opening-request", false);
    observerService.addObserver(this, "http-on-examine-merged-response", false);

我该怎么做?

1 个答案:

答案 0 :(得分:0)

nsITraceable频道,请注意onStartRequest中的时间并记下onStopRequest中的最后时间,复制粘贴示例:nsITraceableChannel, Intercept HTTP Traffic code