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