Skip to content

Instantly share code, notes, and snippets.

@AymaneHrouch
Last active May 12, 2020 13:55
Show Gist options
  • Save AymaneHrouch/80cd7411baf884eb2ebb4a2b46d091da to your computer and use it in GitHub Desktop.
Save AymaneHrouch/80cd7411baf884eb2ebb4a2b46d091da to your computer and use it in GitHub Desktop.
// Visit : https://mobile.facebook.com/friends/center/requests/outgoing/
// scroll as much as you can
// past below code to the console, press enter and you're done!
//
//
let requests = document.querySelectorAll('[data-sigil="undoable-action"]');
for (i=0; i < requests.length; i++) {
requests[i].children[1].children[0].children[2].children[2].children[0].click();
}
alert(`${requests.length} request has been cancelled successfully`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment