Created
December 31, 2015 19:24
-
-
Save vistajess/550e3b7c564a82d4cc87 to your computer and use it in GitHub Desktop.
Facebook autolike script
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
var likeButton = document.querySelectorAll('._48-k'); | |
for(var i=0 in likeButton) { | |
// trigger the anchor element | |
likeButton[i].click(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment