wikipedia域名重定向

维基百科M站域名重定向到PC站

目前为 2022-09-28 提交的版本。查看 最新版本

// ==UserScript==
// @name         wikipedia域名重定向
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  维基百科M站域名重定向到PC站
// @author       fengqi
// @match		*://*.m.wikipedia.org/*
// @grant        none
// @license MIT
// @run-at		document-start
// ==/UserScript==

(function() {
    window.location.replace(location.href.replace("m.wikipedia.org", "wikipedia.org"));
})();