Saturday, November 2, 2019

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

  1. var confirmBtns = document.getElementsByTagName('button');
  2. for (var i = 0; i < confirmBtns.length; i++) {
  3.     if (confirmBtns[i].innerHTML == "Confirm") {
  4.         confirmBtns[i].click();
  5.     }
  6. }

 Attention:-just do this once a day and not for more than 50 requests.Because accepting more than 50 requests will block your account.So keep it mind.

disabled  facebook account

 

Facebook will show you that do not paste scripts  here.Because with  suspicious codes someone hack your account or can harm to you.So don't paste any codes that are not from a trusted source

facebook warning


 

No comments:

Post a Comment