/** * @author https://codepen.io/bookmarklets * @file Upvote ALL in the current sub.
This only works in OLD REDDIT * Original Source {@link https://cdpn.io/bookmarklets/fullpage/NobJbq#} */ javascript: if(window.location.href.indexOf("old.reddit.com/r/") > -1) { (function(){var q=[];$('.up').each(function(){var that=this;var f=function(index){$(that).trigger('click');$(that).trigger('mousedown');setTimeout(function(){if(q[index]){q[index](index+1);}else{if(upVoteTimer){window.clearTimeout(upVoteTimer);}}},500);};q.push(f);});var upVoteTimer=window.setTimeout(function(){q[0](1);},50);}()); } else { alert("You need to be voting in a single sub in OLD reddit for this to work!\nSWITCH TO OLD REDDIT!\n Go to: http://old.reddit.com/r/ and choose a subreddit") }