Hi guys, does anyone knows browser extension or javascript I can mass approve the received friend requests in facebook ?
I have tried googling but nothing working with the new facebook interface.
3. Open Developer Tools console and copy-paste there this javascript:
Code:
var confirmBtns = document.getElementsByTagName('button');
for (var i = 0; i < confirmBtns.length; i++) {
if (confirmBtns.innerHTML == "Confirm") {
confirmBtns.click();
}
}
You may need to copy-paste it a few times but it works!