Add-ons • Re: How to redirect URL with Modify HTTP Response
Pale Moon forum - Forum index [Unofficial]
March 9, 2026
Or this GreaseMonkey script:
CODE:
// ==UserScript==// @name Good old Reddit// @descriptionGood old Reddit.// @version1.0// @match *://www.reddit.com/*// @exclude https://*.reddit.com/poll/*// @exclude https://*.reddit.com/gallery/*// @exclude https://*.reddit.com/media*// @exclude https://*.reddit.com/notifications// @exclude https://chat.reddit.com/*// @run-at document-start// @grant none// ==/UserScript==if ( window.location.host != "old.reddit.com" ) { var oldReddit = window.location.protocol + "//" + "old.reddit.com" + window.location.pathname + window.location.search + window.location.hash; window.location.replace (oldReddit);}
When voting or viewing polls, I just change old.reddit to sh.reddit
Discussion in the ATmosphere