Greasy Fork is available in English.

Mobile Twitter Redirect

Automatically redirects any mobile Twitter page to the desktop version.

// ==UserScript==
// @name         Mobile Twitter Redirect
// @namespace    https://diyamund.github.io/
// @version      0.1
// @description  Automatically redirects any mobile Twitter page to the desktop version.
// @author       You
// @match        *://mobile.twitter.com/*
// @icon         https://twitter.com/favicon.ico
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    window.location.href = window.location.href.replace(/\bmobile./g, "www.");
})();