Greasy Fork is available in English.

XHR_INTERCEPTOR

XHR请求拦截工具类

Questo script non dovrebbe essere installato direttamente. È una libreria per altri script da includere con la chiave // @require https://update.greasyfork.org/scripts/494576/1377969/XHR_INTERCEPTOR.js

Autore
Zosah
Versione
1.0.0
Creato il
10/05/2024
Aggiornato il
17/05/2024
Licenza
Non disponibile

使用

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