Kaido.to Network Firewall (Anti-Redirect)

Blocks all network calls to redirect domains (works inside iframe behavior).

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Kaido.to Network Firewall (Anti-Redirect)
// @namespace    https://kaido.to.net/
// @version      1.0
// @description  Blocks all network calls to redirect domains (works inside iframe behavior).
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const BLOCK = [
        "alibaba.com",
        "ugclickserver",
        "doubleclick",
        "adservice",
        "adclick",
        "tracking",
        "affiliate",
        "cpi"
    ];

    const isBad = url =>
        typeof url === "string" &&
        BLOCK.some(b => url.includes(b));

    // ---- BLOCK fetch() ----
    const origFetch = window.fetch;
    window.fetch = function(url, opts) {
        if (isBad(url.toString())) {
            console.warn("[FIREWALL] Blocked fetch:", url);
            return new Promise(()=>{}); // drop request
        }
        return origFetch(url, opts);
    };

    // ---- BLOCK XHR ----
    const origOpen = XMLHttpRequest.prototype.open;
    XMLHttpRequest.prototype.open = function(method, url) {
        if (isBad(url.toString())) {
            console.warn("[FIREWALL] Blocked XHR:", url);
            return; // cancel
        }
        return origOpen.apply(this, arguments);
    };

    // ---- BLOCK window.open ----
    window.open = () => {
        console.warn("[FIREWALL] Popup blocked");
        return null;
    };

})();