Greasy Fork is available in English.
中文(zh)维基百科自动跳转至大陆简体(zh-cn)
当前为
// ==UserScript==
// @name 中文维基百科转换成简体
// @namespace polonium.space
// @version 0.2
// @description 中文(zh)维基百科自动跳转至大陆简体(zh-cn)
// @author chemPolonium
// @include http*://zh.wikipedia.org/*
// @include http*://zh.moegirl.org.cn/*
// ==/UserScript==
(function() {
'use strict';
// Your code here...
if (document.URL.includes('/zh/')) {
window.location = document.URL.replace('/zh/','/zh-cn/')
} else if (document.URL.includes('/zh-tw/')) {
window.location = document.URL.replace('/zh-tw/','/zh-cn/')
} else if (document.URL.includes('/zh-hans/')) {
window.location = document.URL.replace('/zh-hans/','/zh-cn/')
}
})();