Bring Back Old Reddit

Always redirects to old-Reddit, avoiding Reddit's redesign.

  1. // ==UserScript==
  2. // @name Bring Back Old Reddit
  3. // @namespace https://greasyfork.org/en/users/105361-randomusername404
  4. // @description Always redirects to old-Reddit, avoiding Reddit's redesign.
  5. // @include *://www.reddit.com/*
  6. // @exclude *://www.reddit.com/poll/*
  7. // @version 1.02
  8. // @run-at document-start
  9. // @author RandomUsername404
  10. // @grant none
  11. // @icon https://www.redditstatic.com/desktop2x/img/favicon/apple-icon-76x76.png
  12. // ==/UserScript==
  13.  
  14. window.location.replace("https://old.reddit.com" + window.location.pathname + window.location.search);