Scripts To Accept /Hide /Delete All Friend Requests At Once

Hey friends,
Sometimes its hard to accept all friend requests at once or sometimes we want to cancel all requests at once depending on our own decision. But its not an easy task to Accept/ Ignore / Delete all friend request by clicking it manually each time. So we decided to solve this problem. Suppose we have 500 Friend Requests on Facebook where we want to all 500 peoples, its not easy to add each and every person manually, so in this case this post will very helpful for you by these scripts provided below.










Accept All Friend Requests At Once  

javascript:for( i = 1;i<document.getElementsByName("actions[accept]").length;i++){document.getElementsByName("actions[accept]")[i].click();}void(0);


Also Read : How To Suggest All Friends In One Click  


Hide All Friend Requests At Once

javascript:for( i = 1;i<document.getElementsByName("actions[hide]").length;i++){document.getElementsByName("actions[hide]")[i].click();}void(0);


Also Read :  How To Accept All Friend Requests Using Javascript 


Delete All Friend Requests At Once 

javascript:var inputs=document.getElementsByTagName('input');for(i in inputs){if(inputs[i].value == 'Delete Request' || inputs[i].value == 'Delete Request')inputs[i].click();}

0 Comment "Scripts To Accept /Hide /Delete All Friend Requests At Once"

Post a Comment