diff options
| author | Nicolas Paul <nico@puffer.fish> | 2025-06-25 19:02:09 +0200 |
|---|---|---|
| committer | Nicolas Paul <nico@puffer.fish> | 2025-06-25 19:02:09 +0200 |
| commit | 4d7725d4ab4091eb522da614bea1aa1bd1c04603 (patch) | |
| tree | 72e63dfd5ada9f570b036b439ff116fdb6c02353 | |
| parent | 2ddb2bb930edaa860f0403f70646f5f17de59dd3 (diff) | |
Userscript to redirect to Reddit's old UI
| -rw-r--r-- | oldreddit.es | 15 |
1 files changed, 15 insertions, 0 deletions
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 <nico@puffer.fish>: unrestricted use given this notice +// remains. + +top.location.hostname = 'old.reddit.com'; + +// vi: ft=javascript |
