If you are looking to Accept or Reject all Friend Requests at Once on Facebook So, You are in Right Place Because We Share a Simple and...
- Log in to facebook
- Go to this URL "www.fb.com/reqs.php"
- Open developer tools * Shortcut Shift+Ctrl+I or F12
- Select Consol section
- paste the following code and press Enter button
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);
Reject 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();}
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);