remove m in wikipedia

remove m in wikipedia url

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

// ==UserScript==
// @name         remove m in wikipedia
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  remove m in wikipedia url
// @author       You
// @match        *://*.m.wikipedia.org/*
// @match        *://*.wikipedia.org/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=wikipedia.org
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    if(location.href.search('.m') !== -1){
    location.href = location.href.replace('.m','')
    }
    // Your code here...
})();