Skip to content

Instantly share code, notes, and snippets.

@woraperth
Created November 2, 2017 07:01
Show Gist options
  • Save woraperth/a9ad6d49813ed84c3573acb6d3f5da97 to your computer and use it in GitHub Desktop.
Save woraperth/a9ad6d49813ed84c3573acb6d3f5da97 to your computer and use it in GitHub Desktop.
Bulk invite in Facebook page
// Run this in console when the invite list page is opened e.g. click the number of likes on each post
// Caution: use at your own risk! Facebook may temporarily ban your action if you invite too many (100+) at a time.
var x = document.querySelectorAll('._42ft._4jy0._4jy3._517h._51sy:not(._5f0v)')
for(var i=0; i<x.length; i++){
x[i].click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment