XHR请求拦截工具类
このスクリプトは単体で利用できません。右のようなメタデータを含むスクリプトから、ライブラリとして読み込まれます: // @require https://update.greasyfork.org/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();