Guest User

Untitled

a guest
Jun 14th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        OldRedditinterface
  3. // @namespace   https://www.reddit.com/
  4. // @description Change reddit intrface
  5. // @version     1
  6. // @include     *://*.reddit.com/*
  7. // @run-at      document-start
  8. // @grant       none
  9. // @noframes
  10. // ==/UserScript==
  11.  
  12. var url = window.location.href;
  13.  
  14. if( url.indexOf( "www.reddit.com" ) !== -1 )
  15. {  
  16.     var res = url.replace("www", "old");
  17.     window.location.replace( res );
  18.     return;
  19. }
Add Comment
Please, Sign In to add comment