Facebook - Confirm all friend requests script

Recharge

Newbie
Joined
Jun 6, 2014
Messages
3
Reaction score
1
Hello guys,

This is my first contribution to the BHW and I hope that you'll like it. Script is pretty straight forward, it only looks for 'Confirm' buttons in browser and then clicks on them. Its a simple script that will save you from all of the boring clicking on Confirm. :)

PHP:
var buttons = document.getElementsByClassName('phl')[0].getElementsByTagName('button'); for (var i=0;i<buttons.length;i++) { if(buttons[i].textContent = 'Confirm') {buttons[i].click();} }

P.S. To make it work, paste it into the Chrome's developer console (or Mozilla's Firebug console).
 
not working ... have you tried it yourself ?

It was showing friend requests sent ...
 
Back
Top