萌娘百科重定向旧版主页

自动重定向到旧版主页,mzh域名自动重定向zh域名 不会一点js 拿别人的劳动成果乱改的 原https://gf.qytechs.cn/zh-CN/scripts/429027

目前为 2024-08-27 提交的版本。查看 最新版本

// ==UserScript==
// @name         萌娘百科重定向旧版主页
// @namespace    moegirl.org.cn
// @version      2024-08-27
// @description  自动重定向到旧版主页,mzh域名自动重定向zh域名 不会一点js 拿别人的劳动成果乱改的 原https://gf.qytechs.cn/zh-CN/scripts/429027
// @author       ?
// @license      AGPL
// @match        zh.moegirl.org.cn/*
// @match        mzh.moegirl.org.cn/*
// @grant        none
// ==/UserScript==

(function () {
    function replace_url(url){
        if (url.match('moegirl.org.cn/*')){
            url = url.replace('#/flow','#/legacy').replace('#/topics','#/legacy').replace('mzh.moegirl.org.cn','zh.moegirl.org.cn');
        }
        console.log(url)
        return url;
    }
    var url = document.location.href;
    var newUrl = replace_url(url);
    if (url != newUrl) {
        document.location.href = newUrl;
    }
})();

QingJ © 2025

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