Skip to content

Instantly share code, notes, and snippets.

@vistajess
Created December 31, 2015 19:24
Show Gist options
  • Save vistajess/550e3b7c564a82d4cc87 to your computer and use it in GitHub Desktop.
Save vistajess/550e3b7c564a82d4cc87 to your computer and use it in GitHub Desktop.
Facebook autolike script
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