summaryrefslogtreecommitdiff
path: root/oldreddit.es
blob: 2128ef1040261a5bbd2699cfa82979eae63b0f18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// ==UserScript==
// @name        Old Reddit UI
// @description Redirects to Reddit's old user interface.
// @match       https://reddit.com/*
// @match       https://www.reddit.com/*
// @version     1.0
// @run-at      document-start
// ==/UserScript==

// By Nicolas Paul <nico@puffer.fish>: unrestricted use given this notice
// remains.

top.location.hostname = 'old.reddit.com';

// vi: ft=javascript