How to Invite All Friends to Facebook Page with this Crazy Technique

Steps to Invite All Friends to Facebook Page

Invite All Friends to Facebook Page

Method 1 – Using Chrome Extension

You will need Google Chrome browser to make this method work. You can download Google Chrome from here. Now open the chrome browser and follow these simple steps:
  1. Install this extension.
  2. Activate the extension and head over to your facebook page.
  3. You will see a little tick icon near the bookmark star. This means that extension is working fine.
  4. Now on your page, select invite friends option. A popup will show with all of your friends in it.
  5. Then click the icon of the extension. This will begin the process of inviting all of your friends to your facebook page.
  6. Wait for the process to complete. (Larger friend list means you have to wait longer)

Method 2 – Using Script

  1. Copy the code given below or open this link   http://pastebin.com/XsRRhVPG.  
var inputs = document.getElementsByClassName('uiButton _1sm'); for(var i=0; i<inputs.length;i++) { inputs[i].click(); }
  1. Go to Facebook Page where you want to add your friends. (Google Chrome Browser is recommended, you can also invite all friends to facebook page using Mozilla Firefox)
  2. Click Invite Friends and Scroll to the bottom of that list. (Use Page Down to Scroll Fast). This is a very important step.
  3. Press F12 to open developer console.
  4. Paste code there and hit enter.
  5. Within few minutes all of your friends will be invited to that page.

Method 3 – Invite People Who Liked your Post to Your Page

There may be some cases like you boosted a post using Facebook advertisement. There you will get an opportunity to invite the people who have liked your post to your page. In most cases, this results in lots of increase in likes. Also larger the list harder and time-consuming it is to invite everyone manually.
You can use the code given below and follow the similar procedure like Method 2 to invite them all to your Facebook Page in a moment:

var inputs = document.querySelectorAll(‘a._42ft._4jy0._4jy3._517h’);
for(var i=1; i<inputs.length;i++) {
inputs[i].click();
}