Hypixel Skyblock Fandom Wiki Redirect

Automatically redirects Hypixel Skyblock Fandom Wiki links to the official wiki.

// ==UserScript==
// @name         Hypixel Skyblock Fandom Wiki Redirect
// @version      1
// @description  Automatically redirects Hypixel Skyblock Fandom Wiki links to the official wiki.
// @author       Arden
// @match        https://hypixel-skyblock.fandom.com/wiki/*
// @grant        GM_xmlhttpRequest
// @run-at       document-start
// @license MIT
// @namespace https://gf.qytechs.cn/users/1345056
// ==/UserScript==

(function () {
  "use strict";
  var path = window.location.pathname.replace("/wiki", "");
  var newUrl = "https://wiki.hypixel.net" + path;
  GM_xmlhttpRequest({
    method: "HEAD",
    url: newUrl,
    onload: function (response) {
      if (response.status !== 404) {
        window.location.replace(newUrl);
      }
    },
  });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址