Facebook auto friend accept and reject

sagarblack

Junior Member
Joined
Jan 10, 2016
Messages
127
Reaction score
16
Hello BHW,

I am going to share 100% working facebook friend accept and reject code

1st go to the link https://facebook.com/reqs.php
Then do right click on your mouse and then click on inspect element then click on console
and use this codes for accept
Code:
javascript: var field = document.getElementsByName("actions[accept]");for (i = 0; i < 50; i++)field[i].click() ;

and use this for reject
Code:
javascript: var field = document.getElementsByName("actions[reject]");for (i = 0; i < 50; i++)field[i].click() ;

Thanks.
 
Back
Top