NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Old Reddit Layout
// @namespace 4891734973498274912384712974219587219
// @version 0.7
// @description Forces old.reddit.com, without messing up your browser history.
// @author @ballerburg9005
// @match https://www.reddit.com/*
// @match https://reddit.com/*
// @match http://www.reddit.com/*
// @match http://reddit.com/*
// @grant none
// @run-at document-start
// @license MIT
// ==/UserScript==
(function () {
'use strict';
var url_top = new URL(top.location);
var url = url_top.toString();
if (url.match("//old\.reddit\.com") === null && !url.match("/poll/") && !url.match("/notifications") && !url.match("/media\\?url=") && !url.match("/gallery/") && !url.match("//new\.reddit\.com") && !url.match("//chat\.reddit\.com")) {
url_top.hostname = "old.reddit.com";
top.location.replace(url_top);
}
})();