XHR请求拦截工具类
Bu script direkt olarak kurulamaz. Başka scriptler için bir kütüphanedir ve meta yönergeleri içerir // @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();