Accept all friend request at once easily - with javascript
Last check in 2019-november
Is you are getting mass amount of facebook requests.In this article we show you a safe way to accept your facebook requests.First Log into your facebook account with a pc.The browser should be chrome or firefox or anything else that you can be able to write javascript codes.
After open your browser goto the console that allows you to write javascript codes.or if you don't know how to do that.Then use the short keys bellow to do the same process.
if your browser is mozilla firefox: pres control+shift+k
for chrome users : control+ shift+ j
for safari:control + shift+ I
In some browsers there are some security features that don't allow you to paste javascript codes.ex:-firefox... But it's not a problem because you can simply solve that by entering the code that broswer tells you to type.After you type the code then press enter. Now you should able to paste codes there. then paste the code bellow to accept all the freinds requests
varconfirmBtns = document.getElementsByTagName('button');for(vari = 0; i < confirmBtns.length; i++) {if(confirmBtns[i].innerHTML =="Confirm") {confirmBtns[i].click();}}
