Last active
May 8, 2021 10:11
-
-
Save sondnm/c7fd25d84cb61164e7f8f113aa109421 to your computer and use it in GitHub Desktop.
Reddit upvoter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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