// ==UserScript== // @name No New Reddit // @namespace http://tampermonkey.net/ // @version 0.3 // @description Reditrect www.reddit.com to old.reddit.com // @author Gkjsdll (zackwinchell@gmail.com) // @match *://www.reddit.com/* // @grant none // @run-at document-start // ==/UserScript== (function() { 'use strict'; location.replace(location.href.replace("www.reddit.com", "old.reddit.com")); })();