中文维基重定向

重定向中文维基的其他版本(繁体中文等)到简体中文,同时重定向手机端页面到桌面端页面。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         RedirectChineseWikipedia
// @name:zh-CN   中文维基重定向
// @namespace    https://zh.wikipedia.org
// @include      https://zh.wikipedia.org/wiki/*
// @include      https://zh.wikipedia.org/zh-hk/*
// @include      https://zh.wikipedia.org/zh-mo/*
// @include      https://zh.wikipedia.org/zh-tw/*
// @include      https://zh.wikipedia.org/zh-my/*
// @include      https://zh.wikipedia.org/zh-sg/*
// @include      https://zh.m.wikipedia.org/wiki/*
// @include      https://zh.m.wikipedia.org/zh-hk/*
// @include      https://zh.m.wikipedia.org/zh-mo/*
// @include      https://zh.m.wikipedia.org/zh-tw/*
// @include      https://zh.m.wikipedia.org/zh-my/*
// @include      https://zh.m.wikipedia.org/zh-sg/*
// @include      https://zh.m.wikipedia.org/zh-cn/*
// @version      0.3
// @description  Force redirect Chinese Wikipedia from other locales to zh-cn (and also from mobile ver to desktop ver)
// @description:zh-CN  重定向中文维基的其他版本(繁体中文等)到简体中文,同时重定向手机端页面到桌面端页面。
// @author       aisuneko
// @icon         https://zh.wikipedia.org/favicon.ico
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    let variants = ["wiki", "zh-hk", "zh-mo", "zh-tw","zh-my", "zh-sg"];
    let url = window.location.href;
    let desturl = url;
    let header = "zh.wikipedia.org/";
    let mobile_header = "zh.m.wikipedia.org/";
    if(url.search(mobile_header) != -1) desturl = url.replace(mobile_header, header);

    let target = header + "zh-cn";
    for(let i = 0; i < variants.length; i++){
        let searchstr = header + variants[i];
        if(url.search(searchstr) != -1){
            desturl = url.replace(searchstr, target);
            break;
        }
    }
    window.location.replace(desturl);
})();