Any Facebook Script?

akash80575

Regular Member
Joined
Jul 27, 2017
Messages
222
Reaction score
42
Hey, Everyone.

I am new here at BHW.

I wanted to know if there is any useful Facebook script out there to assist you in managing your facebook.

?
 
Hey, Everyone.

I am new here at BHW.

I wanted to know if there is any useful Facebook script out there to assist you in managing your facebook.

?

Hey there!

These are the two scripts I use on my Facebook pages :


Invite all your friends to like your page


var inputs = document.getElementsByClassName('uiButton _1sm');

for(var i=0; i<inputs.length;i++) {

inputs.click();

}

PS : you have to open the window where you can invite your friends, scroll down to the bottom of this window then copy/paste this script in your console.


Invite people who have liked/reacted your post to like your page


var buttons;buttons = document.getElementsByClassName('_42ft');for (var i = 0; i < buttons.length; i++) { if(buttons.getAttribute('ajaxify') != null){ if(buttons.getAttribute('ajaxify').indexOf('invite') != -1){ buttons.click(); } }}


PS : you have to open the window where you can invite these engaged non fans, scroll down to the bottom of this window then copy/paste this script in your console.


Hope that help!
 
Back
Top