Greasy Fork is available in English.

XHR_INTERCEPTOR

XHR请求拦截工具类

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.org/scripts/494576/1377969/XHR_INTERCEPTOR.js

作者
Zosah
版本
1.0.0
创建于
2024-05-10
更新于
2024-05-17
许可证
暂无

使用

// @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();