我想在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);
我该怎么做?
答案 0 :(得分:0)
nsITraceable频道,请注意onStartRequest
中的时间并记下onStopRequest
中的最后时间,复制粘贴示例:nsITraceableChannel, Intercept HTTP Traffic code