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