HOW TO REJECT OR ACCEPT ALL PENDING REQUEST ON FACEBOOK
1) First of all Login to your Facebook account.
Now to go to Facebook Pending Requests page (Link: www.facebook.com/reqs.php). You will see all Facebook friend requests here.
2) If you have lot of friend requests may you see in pending requests page see more option click on see more for open other friend requests. May you do this two or three times.
3) After completing all above steps. Open Console box in your browser.
4) For Google Chrome press Ctrl+Shift+I or F12 or right click on window and go to inspect element and click on console.
5) In Mozilla Firefox Press Ctrl+Shift+C or right click on window and go to inspect element and click on console.
6) After open console box Copy desired below given Script and Paste into console box and press Enter
SCRIPTS
1)ACCEPT ALL FACEBOOK FRIEND REQUEST AT ONCE
javascript:for( i =
1;i<document.getElementsByName
("actions[accept]").length;i++)
{document.getElementsByName("actions
[accept]")[i].click();}void(0);
2)REJECT ALL FACEBOOK FRIEND REQUEST IN A SINGLE CLICK
javascript:var inputs=document.
getElementsByTagName('input');for(i in
inputs){if(inputs[i].value == 'Delete
Request' || inputs[i].value == 'Delete
Request')inputs[i].click();}
7) YOU ARE DONE !!!!!!
No comments:
Post a Comment