How to Confirm Accept All Facebook Friend Request at Once


In this tutorial, I'm going to show you accepting all the friend requests at once at your Facebook account .
Here we are using Firefox browser. But this method works on Google Chrome browser as well. 

Here is the video version of this tutorial..

This is code : 

Note: The old code is no longer working. I've altered new working code. You'll have to follow same steps. But will have to do it few more times. Once the code applied, page will redirect. Then you'll need to load friend request page again. Hope this helps to make your life easier. :)

New Code: Working to date!

javascript:
for( i = 1;i<document.getElementsByClassName("_42ft _4jy0 _4jy3 _4jy1").length;i++)
{
document.getElementsByClassName("_42ft _4jy0 _4jy3 _4jy1")[i].click();
}

void(0);



Old code (No longer working)
javascript:var x=document.getElementsByTagName('input');var y=x.length;for(var i=0;i<y;i++) { if(x[i].value=="Confirm") { x[i].click(); } }


Here is the step by step guide. 

1. Login to your Facebook account. Then click on the Friends icon. (Yellow highlighted). Then on the popup window, click the "See All" link to load all the friend requests.




2.  Depending on the number of friend request you have, page will show the requests. If you have lots of friend request,  Scroll down and you'll see "See more Requests" link. Click on it to load more..and all of them. 




3. Once you load all the friend requests,  copy this code. 

javascript:var x=document.getElementsByTagName('input');var y=x.length;for(var i=0;i<y;i++) { if(x[i].value=="Confirm") { x[i].click(); } }


4. Then on Firefox browser, Menu ---> Web Developer --> Web Console

Or use this shortcut : 
CTRL + SHIFT + K  ( firefox)




5. Then paste above copied code on web console. and Press Enter.


6. You'll see Friend Requests are confirming. 
Now you'll see some of Friend requests are not confirming. So don't worry, Once it done, Paste the code again, and Press Enter. Then it confirm all of them. Cool right.. ?..

Remember, Facebook has limitation upto 5000 friends limitation per account. So keep that mind and don't try to add more friends than that. 

Post a Comment

2 Comments