Skip to content

Instantly share code, notes, and snippets.

@sondnm
Last active May 8, 2021 10:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sondnm/c7fd25d84cb61164e7f8f113aa109421 to your computer and use it in GitHub Desktop.
Save sondnm/c7fd25d84cb61164e7f8f113aa109421 to your computer and use it in GitHub Desktop.
Reddit upvoter
items = document.getElementsByClassName("icon-upvote") // new Reddit version
// items = document.getElementsByClassName("arrow up") // old Reddit version
Array.prototype.forEach.call(items, function(el, i){
setTimeout(function(){
el.click();
},1000 + ( i * 400 ));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment