From 4d7725d4ab4091eb522da614bea1aa1bd1c04603 Mon Sep 17 00:00:00 2001 From: Nicolas Paul Date: Wed, 25 Jun 2025 19:02:09 +0200 Subject: Userscript to redirect to Reddit's old UI --- oldreddit.es | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 oldreddit.es diff --git a/oldreddit.es b/oldreddit.es new file mode 100644 index 0000000..2128ef1 --- /dev/null +++ b/oldreddit.es @@ -0,0 +1,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 : unrestricted use given this notice +// remains. + +top.location.hostname = 'old.reddit.com'; + +// vi: ft=javascript -- cgit v1.2.3