Created
November 2, 2017 07:01
-
-
Save woraperth/a9ad6d49813ed84c3573acb6d3f5da97 to your computer and use it in GitHub Desktop.
Bulk invite in Facebook page
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
// 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