Upvoting all comments in a reddit thread with JavaScript
This little snippet will upvote all comments in a Reddit thread that you haven’t already upvoted. There’s a small timeout to prevent flooding.
You probably shouldn’t do this.
(function w(){var u=$(".unvoted.up.arrow");if(u.length-1){setTimeout(w,500);u.trigger('click')()}})()