Advertisement
urafaguette

UpVoteFairy

Nov 24th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // copy-pasta this one-line javascript script into a bookmark in your browser, and, you'll
  2. // become an upvote fairy! When clicked/run, it works through every post on a reddit thread
  3. // clicking the upvote arrows one-by-one, half-a-second apart. (500ms was the shortest
  4. // interval I could get reddit to tolerate.) Enjoy! /u/urafaguette
  5.  
  6. javascript:(function(){$(function(){$('div.arrow.up').each(function(i,t){setTimeout(function(){$(t).click();},500*i);});});})();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement