Greasy Fork is available in English.
https://zh.wikipedia.org/zh/* to https://zh.wikipedia.org/zh-cn/*
当前为
// ==UserScript==
// @name wikipeida 跳简体中文
// @version 0.0.1
// @description https://zh.wikipedia.org/zh/* to https://zh.wikipedia.org/zh-cn/*
// @author LisonFan
// @match *://zh.wikipedia.org/zh/*
// @grant none
// @icon https://zh.wikipedia.org/static/favicon/wikipedia.ico
// @namespace https://lisonfan.com/
// ==/UserScript==
(function() {
'use strict';
var href = location.href;
var changeHref = href.replace(/\/zh\//g, "/zh-cn/");
location.href = changeHref;
})();