🏠 Home 

TeraBox domain redirect

Automatically redirect TeraBox domains to terabox.com


Install this script?
// ==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              *://*.####terabox.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";
}
})();