new script to accept all facebook friend requests at once

vikas3445

Regular Member
Joined
Jan 8, 2011
Messages
326
Reaction score
76
I have been searching for a script for accepting all friend requests at once , but none were working, tired trying them all.
Today i created 1 and its working in chrome, not in mozilla i think.
Let me share it for you guys.
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(); } }
 
This is first working script I have ever find. And it works on firefox too, I tried it. I have to enter this script 3 times to accept 503 reqeusts :)
Awesome!!!
 
your account get locked as soon as possible if you use software/code...thanks
 
I have been searching for a script for accepting all friend requests at once , but none were working, tired trying them all.
Today i created 1 and its working in chrome, not in mozilla i think.
Let me share it for you guys.
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(); } }

Hi thanks for code, but my count will be locked by this trick ?
 
Back
Top