Skip to content

Instantly share code, notes, and snippets.

@thelatestcheckout
Created January 25, 2020 08:21
Show Gist options
  • Save thelatestcheckout/01566ba91d28dd37f406925f5e38bd2a to your computer and use it in GitHub Desktop.
Save thelatestcheckout/01566ba91d28dd37f406925f5e38bd2a to your computer and use it in GitHub Desktop.
Facebook - Delete Sent Friend Request
1. Open google chrome
2. Go to fb mobile link
https://m.facebook.com/friends/center/requests/outgoing/#friends_center_main
3. Open Inspector mode/Dev tool
4. Hover over "cancel" button to find the class
5. Copy the class and replace in the following code -
javascript: var inputs = document.getElementsByClassName('class');
for (var i = 0; i < inputs.length; i++) {
inputs[i].click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment