Greasy Fork is available in English.
XHR请求拦截工具类
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.icu/scripts/494576/1374297/XHR_Interceptor.js
const xhrHandler = new XMRHandler();
xhrHandler.addUrlInterceptor({
domain: "baidu.com",
url: "/search?a=1",
cb: (response) => {
console.log('====> ok', response);
},
});
xhrHandler.execute();