TheNH813

Good o'l Reddit

Jun 30th, 2018
49,714
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        Good o'l Reddit
  3. // @description Makes sure you're using Good o'l Reddit. (C) TheNH813 2018. License WTFPLV2
  4. // @version     1.0
  5. // @match       *://*.reddit.com/*
  6. // @run-at      document-start
  7. // @grant       none
  8. // ==/UserScript==
  9.  
  10. if ( window.location.host != "old.reddit.com" ) {
  11.     var oldReddit  = window.location.protocol + "//" + "old.reddit.com" + window.location.pathname + window.location.search + window.location.hash;
  12.     window.location.replace (oldReddit);
  13. }
Add Comment
Please, Sign In to add comment