Shrimadhav U K

How to Invite all your facebook friends to like your facebook page?

Just follow the instructions as it appears on the following screenshots:

  • Goto the facebook page which you want to promote.
  • Click on Invite friends to like this Page.
    1.png
    2.png
  • Scroll down till the dynamic loading stops.
  • Open the developer console by pressing the F12 key on the keyboard.
    3.png
  • Paste the following code in the console.
1
2
3
4
5
6
var inputs = document.getElementsByClassName('_1sm');
// class name of the invite button
for(var i=0;i<inputs.length;i++) {
// click on the focused element
inputs[i].click();
}

4.png

  • Wait for the request to complete.
    5.png

  • It might take some time depending on the number of friends and the speed of the internet connection that you have.
    6.png

  • All done! Share your joy by clicking on the share button below.