在我的后台脚本中,我本质上是试图阻止任何包含通过正则表达式包含标签的Web请求。(我知道这不是最佳选择,但是无论如何我都会这样做。)我相信我已经解决了正则表达式但是,我试图弄清楚如何正确应用它。
我的后台脚本:
chrome.webRequest.onBeforeRequest.addListener(function(details) {
const regex;
if (details.method === "GET") {
//Not sure how to handle this part
} else if (details.method === "POST") {
//Or this part
}
}, {
urls: ["<all_urls>"]
}, ["blocking", "requestBody"]);