我知道我可以在DevTool中获取所有HTTP请求,但现在我想将它们放在chrome扩展中。哪个API可以完成这项工作?
答案 0 :(得分:0)
您会根据标签ID查看webRequest
API event filter。
这样的事情(需要"webRequest"
权限和"<all_urls>"
主机权限):
chrome.webRequest.onBeforeRequest.addListener(
function(details) {
// Do something with the details
},
{tabId: /* ... */, urls: "<all_urls>"}
);
P.S。我看到了关于资源的另一个问题;请注意,您可以按类型进一步过滤请求,例如"stylesheet"
答案 1 :(得分:0)
chrome.webRequest 很有帮助,但它不允许您在 Chrome 中读取响应正文。我有一个阅读正文的解决方案:https://stackoverflow.com/a/67390377/1226799