Created
January 25, 2020 08:21
-
-
Save thelatestcheckout/01566ba91d28dd37f406925f5e38bd2a to your computer and use it in GitHub Desktop.
Facebook - Delete Sent Friend Request
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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