When you want to have as much as fan page in your own facebook page. Then the easy way is to invite your friends to join your facebook. But time burden is the problem for you if you have a thousand of friends and or more than thousand.
Now I have a trick to show you to solve this problem. Following my below steps if you want this to work perfectly.
START
1. Open Chrome web browser (If you don't have Chrome in your computer, then you have to download it)
2. Go to home page of any Facebook page that you want to invite your friends into.
3. Go to "More" drop down list then press on "Invite Friends"
(see the screenshot below)
4. There will be a popup window of you friends list and then just "scroll down" ALL THE WAY until there is no more friends list to load then stop.
(see the screenshot below)
4. There will be a popup window of you friends list and then just "scroll down" ALL THE WAY until there is no more friends list to load then stop.
(see the screenshot below)
- Open console
- Click on selector
- Select on Invite button
- Copy the name of class
[in this example the class name is "uiButton _1sm"]
just remember this name to use with script in following steps.
[in this example the class name is "uiButton _1sm"]
just remember this name to use with script in following steps.
6. First of all make sure that you are in the Console mode. Then don't care about any information in the console log just click the clear log button as you can see in the screenshot below.
7. Copy the script below and paste into console command then press enter.
var b = document.getElementsByClassName('uiButton _1sm'); console.log("There are "+b.length+" friends was not invited."); console.log("The start inviting..."); for(var i=0;i<b.length;i++){ b[i].click(); console.log((i+1)+"/"+b.length+" were invited."); } console.log("Completed.");
8. Now, you need wait until the script running is completed.
9. Finally, you have done all friends were invited.
Note: the class name of Invite button maybe changed frequently by Facebook developers. Please follow my steps carefully on step number 5 and 6.







"undefined"
ReplyDelete