In my previous post, I told you how to add all facebook friends in a group automatically. Today, I'm gonna tell you how to invite all your facebook friends to like a page. In this process also, I'll use a javascript which will invite all your friends to like your facebook page.
2. Open your facebook page.
3. Now click Build Audience > Invite.
4. Now a box will appear having your friends list with an invite button after them.
5. Press ctrl+shift+J to open chrome console editor.
6. Now copy the following code and paste in it and press enter.
Follow The Steps Below:
1. Log In to your facebook account.2. Open your facebook page.
3. Now click Build Audience > Invite.
4. Now a box will appear having your friends list with an invite button after them.
5. Press ctrl+shift+J to open chrome console editor.
6. Now copy the following code and paste in it and press enter.
var inputs = document.getElementsByClassName('uiButton _1sm');7. That's it. Your all friends will be invited to like your page.
for(var i=0; i<inputs.length;i++) {
inputs[i].click();
}
0 blogger:
Post a Comment