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