XHR请求拦截工具类
This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greatest.deepsurf.us/scripts/494576/1377969/XHR_INTERCEPTOR.js
// @run-at document-start
const xhrInterceptor = new XMRInterceptor();
xhrInterceptor.addUrlInterceptor({
domain: "baidu.com",
url: "/search?a=1",
cb: (response) => {
console.log('====> ok', response);
},
});
xhrInterceptor.execute();