Guest User

Reddit.com to i.reddit.com UserScript

a guest
Apr 12th, 2018
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        URL Conversion | Reddit > i.reddit
  3. // @namespace   pandasun
  4. // @description reddit to i.reddit
  5. // @include     *reddit*
  6. // @version     1
  7. // @grant       none
  8. // @run-at document-start
  9. // ==/UserScript==
  10.  
  11. var url = window.location.toString();
  12. if (url.indexOf('https://www.reddit.com') !== - 1) {
  13.   window.location = url.replace(/www.reddit.com/, 'i.reddit.com');
  14. }
Add Comment
Please, Sign In to add comment