Greasy Fork 支持简体中文。

Minecraft Fandom 2 Wiki

Redirects and replaces links from "minecraft.fandom.com" to "minecraft.wiki"

// ==UserScript==
// @name         Minecraft Fandom 2 Wiki
// @namespace    https://gist.github.com/zlyfer/d7e32f789b226cf9d27ec75ffc3b952d
// @gomepage     https://zlyfer.net
// @version      0.3
// @description  Redirects and replaces links from "minecraft.fandom.com" to "minecraft.wiki"
// @author       zlyfer
// @license      MIT
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const replaceFandomLinks = () => {
        if (document.domain === "minecraft.fandom.com") {
            window.location.replace("minecraft.wiki");
            return;
        }

        document.querySelectorAll('a[href*="minecraft.fandom.com"]').forEach(anchor => {
            anchor.href = anchor.href.replace("minecraft.fandom.com", "minecraft.wiki");
        });
    };

    window.addEventListener('load', replaceFandomLinks);
    setInterval(replaceFandomLinks, 10);
})();