No mobile Wikipedia

Sends you from the mobile Wikipedia page to the Desktop one

// ==UserScript==
// @name         No mobile Wikipedia
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Sends you from the mobile Wikipedia page to the Desktop one
// @author       You
// @include      http*://*.m.wikipedia.org/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.location = document.URL.replace(".m","")
})();