TeraBox 域名重定向

自动重定向 TeraBox 域名到 terabox.com

// ==UserScript==
// @name               TeraBox domain redirect
// @name:zh-CN         TeraBox 域名重定向
// @namespace          nga-redirect
// @version            2025.03.12.1
// @description        Automatically redirect TeraBox domains to terabox.com
// @description:zh-CN  自动重定向 TeraBox 域名到 terabox.com
// @author             Amelia
// @license            MIT
// @run-at             document-start
// @match              *://*.terabox.app/*
// @match              *://*.terabox.fun/*
// @match              *://*.1024terabox.com/*
// @match              *://*.4funbox.com/*
// @match              *://*.mirrobox.com/*
// @match              *://*.nephobox.com/*
// @grant              none
// ==/UserScript==

(function() {
    'use strict';

    if (location.hostname != "terabox.com") {
        window.location.hostname = "terabox.com";
    }
})();

QingJ © 2025

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