蓝奏云域名重定向

蓝奏云重定向

// ==UserScript==
// @name        蓝奏云域名重定向
// @description 蓝奏云重定向
// @icon        https://www.lanzoui.com/favicon.ico
// @version     2025040302
// @include     /^https?://([\w\-]+\.)?lanzou[a-z]?\.com/.*/
// @grant       none
// @license     Unlicense
// @run-at      document-start
// @namespace https://greasyfork.org/users/1235823
// ==/UserScript==

const domain = "lanzoui.com";

if (!location.hostname.endsWith(domain)) {
	location.hostname = location.hostname.replace(/lanzou[a-z]?\.com$/, domain);
}