Greasy Fork is available in English.
Makes sure you're using Good o'l Reddit
// ==UserScript== // @name old.reddit redirect // @description Makes sure you're using Good o'l Reddit // @license WTFPLV2 // @version 1.0 // @author Baerbeisser // @namespace http://placeholder.ch/ // @match https://www.reddit.com/r/* // @match https://www.reddit.com/user/* // @run-at document-start // @grant none // ==/UserScript== var oldReddit = window.location.protocol + "//" + "old.reddit.com" + window.location.pathname + window.location.search + window.location.hash; window.location.replace (oldReddit);