🏠 Home 

中文维基百科转换成简体

中文(zh)或其他中文大区(如zh-my)维基百科自动跳转至大陆简体(zh-cn),移动版自动跳转至电脑版


Install this script?
// ==UserScript==
// @name         中文维基百科转换成简体
// @namespace    polonium.space
// @version      0.8
// @description  中文(zh)或其他中文大区(如zh-my)维基百科自动跳转至大陆简体(zh-cn),移动版自动跳转至电脑版
// @author       chemPolonium
// @include      http*://zh.wikipedia.org/*
// @include      http*://*.m.wikipedia.org/*
// @run-at       document-start
// ==/UserScript==
(function () {
'use strict';
let replacedUrl = document.URL;
replacedUrl = replacedUrl.replace(/(zh.wikipedia.org\/)(?:zh-cn\/|zh-hans\/|zh\/|zh-hk\/|zh-mo\/|zh-my\/|zh-sg\/|zh-tw\/|wiki\/)?/, '$1zh-cn/');
replacedUrl = replacedUrl.replace('.m.wiki', '.wiki');
if (replacedUrl !== document.URL) {
window.location = replacedUrl;
}
})()