Wednesday, January 29, 2014

Invite all friends to Facebook page using Chrome

  1. Goto your Facebook page and you see Build Audience option on the top of the page. When you click on it you see some options, please select Invite Friends… from it.invite-friends-option
  2. Now you see a popup with your friends, but by default you didn’t see your all friends in the list. For all friends you have to select Search All Friends from the dropdown.invite-friends-popup
  3. Before move on just scroll down the list of your friends. When you reach at the bottom more friends will loading. Keep on scroll down the list unless you get list of all your friends.
  4. Press Ctrl+Shift+J for Console.inspect-element
  5. Copy the below code and paste it in the Console and press Enter. Use Ctrl+V to paste.
    var inputs = document.getElementsByClassName('uiButton _1sm');
    for(var i=0; i<inputs.length;i++) {
     inputs[i].click();
    }
  6. Now hold for some seconds you will see processing going on, it will depend upon your number of friends. If you have a long list of friends then may be it will take some time. But you are able to see something is in process.
I think you need this and I hope you like this!

No comments:

Post a Comment