Greasy Fork is available in English.
萌娘百科mzh域名自动跳转,抄袭自https://sleazyfork.org/zh-CN/scripts/375942-southplus%E8%B7%B3%E8%BD%AC,未经过原作者同意。
当前为
// ==UserScript==
// @name 萌百mzh页面自动跳转桌面版/PC版
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 萌娘百科mzh域名自动跳转,抄袭自https://sleazyfork.org/zh-CN/scripts/375942-southplus%E8%B7%B3%E8%BD%AC,未经过原作者同意。
// @author 黑田光
// @match *://mzh.moegirl.org.cn/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var url=window.location.href;
url=url.replace(window.location.host,"zh.moegirl.org.cn");
window.location.href=url;
})();