Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

This works with most user script plugins like GreaseMonkey, ViolentMonkey or TamperMonkey:

  // ==UserScript==
  // @name BackToOldReddit
  // @namespace Reddit
  // @match *://www.reddit.com/*
  // @grant none
  // @run-at document-start
  // ==/UserScript==
  const currentURL = window.document.location.toString();
  
  if(currentURL.includes('//www')) {
    const newURL = currentURL.replace('//www','//old');
    window.document.location.replace(newURL);
  }


Uhhh, you don't need a plugin... you can just set this to happen in your Reddit profile.


This lets you do it without an account though. An order of magnitude more people use reddit logged out with no account, than those that have an account.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: