Skip to content

Instantly share code, notes, and snippets.

View juliapolbach's full-sized avatar
🎯
Focusing

Júlia juliapolbach

🎯
Focusing
View GitHub Profile
@guiliredu
guiliredu / facebook-page-invite.js
Last active July 2, 2024 15:12
Facebook - Script to auto invite people who liked a page post do like the page
var buttons;
buttons = document.getElementsByClassName('_42ft');
for (var i = 0; i < buttons.length; i++) {
if(buttons[i].getAttribute('ajaxify') != null){
if(buttons[i].getAttribute('ajaxify').indexOf('invite') != -1){
buttons[i].click();
}
}
}