// ==UserScript== // @name redirect to old reddit // @namespace https://reddit.com/ // @description the naive solution // @version 0.1 // @author lucke // @license 0BSD // @match https://reddit.com/* // @match https://www.reddit.com/* // @match https://new.reddit.com/* // @exclude https://old.reddit.com/* // @exclude https://www.reddit.com/account/* // @exclude https://www.reddit.com/media?* // @grant none // @downloadURL https://lucke.strokin.it/etc/reddit.js // @updateURL https://lucke.strokin.it/etc/reddit.js // ==/UserScript== var rep_url = location.protocol + "//" + "old.reddit.com" + location.pathname + location.search + location.hash; location.replace(rep_url);