Redirect /r/subreddit to /r/subreddit+

Redirects any /r/subreddit links to /r/subreddit+ links

  1. // ==UserScript==
  2. // @name Redirect /r/subreddit to /r/subreddit+
  3. // @namespace kmcdeals.com
  4. // @version 1.2
  5. // @description Redirects any /r/subreddit links to /r/subreddit+ links
  6. // @author KMC
  7. // @match *.reddit.com/r/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. if(window.location.href.split("/")[4].indexOf("+") == -1){
  12. window.location = window.location.href.replace(/(http.*\/r\/)([\w]+)(\/comments.*)?/g, "$1$2+$3");
  13. } else {
  14. var comments = document.getElementsByClassName("comments")
  15. for(var i = 0; i < comments.length; i++){
  16. comments[i].href = comments[i].href.replace(/(http.*\/r\/)([\w]+)(\/comments.*)?/g, "$1$2+$3");
  17. }
  18. }