wikipedia域名重定向

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

// ==UserScript==
// @name         wikipedia域名重定向
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  维基百科M站域名重定向到PC站
// @author       imgreasy
// @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"));
})();