XHR_INTERCEPTOR

XHR请求拦截工具类

当前为 2024-05-10 提交的版本,查看 最新版本

此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.org/scripts/494576/1374301/XHR_INTERCEPTOR.js

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

使用

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