Skip to content

Instantly share code, notes, and snippets.

@zyryc
Last active December 26, 2020 07:29
Show Gist options
  • Save zyryc/ebcd86c1c2c9bd5eb6f8c3beb1d4a4e3 to your computer and use it in GitHub Desktop.
Save zyryc/ebcd86c1c2c9bd5eb6f8c3beb1d4a4e3 to your computer and use it in GitHub Desktop.
send many friend requests at a go
var btn = document.getElementsByTagName('button');
for(let i=0; i<btn.length; i++){
btn[i].click();
console.log(i);
}
//open https://m.facebook.com/friends/center/requests/
// open consoe
// copy your console
// run
// happy hacking !!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment