Skip to content

Instantly share code, notes, and snippets.

@bbscout
Created June 10, 2022 11:48
Show Gist options
  • Save bbscout/80bd79ac81f4f9517c4094ca0bc98ba6 to your computer and use it in GitHub Desktop.
Save bbscout/80bd79ac81f4f9517c4094ca0bc98ba6 to your computer and use it in GitHub Desktop.
Auto check invite checkbox to FB page
//First scroll through the FB Page invite list and then run this code through Developers console
//NOte: It's limited to 255 people at once
(function() {
var aa = document.querySelectorAll("div[role=checkbox]");
for (var i = 0; i < aa.length; i++){
aa[i].click();
}
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment