// ==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/ // @downloadURL none // ==/UserScript== (function() { 'use strict'; var href = location.href; var changeHref = href.replace(/\/zh\//g, "/zh-cn/"); location.href = changeHref; })();