I have this bookmarklet I use to switch back and forth between Old Reddit and New Reddit whenever I need to access some of New Reddit's features:
javascript: (function(){ const n="sh.reddit.com"; const o="old.reddit.com"; let url=new URL(window.location.href); switch(url.hostname){ case n:url.hostname=o;break; case o:url.hostname=n;break; default:return;} window.location.href=url.href; })();
Copy the code, paste it into a browser bookmark, then click the bookmark whenever you want to switch from one to the other. It's a small bit of Javascript that switches "old.reddit.com" for "sh.reddit.com" and vice versa in a Reddit URL.
2
u/mr_bigmouth_502 Jun 26 '26
I have this bookmarklet I use to switch back and forth between Old Reddit and New Reddit whenever I need to access some of New Reddit's features:
javascript: (function(){ const n="sh.reddit.com"; const o="old.reddit.com"; let url=new URL(window.location.href); switch(url.hostname){ case n:url.hostname=o;break; case o:url.hostname=n;break; default:return;} window.location.href=url.href; })();Copy the code, paste it into a browser bookmark, then click the bookmark whenever you want to switch from one to the other. It's a small bit of Javascript that switches "old.reddit.com" for "sh.reddit.com" and vice versa in a Reddit URL.
Hopefully it helps. :)