You must have sent friend requests to increase the number of friends on Facebook. But after a while, the unaccepted invitations pile up into a long and annoying list. I show you how to delete all sent friend requests super fast.
Join the channel Telegram belong to AnonyViet 👉 Link 👈 |
You don’t have to sit down and delete every sent friend request. It only takes a pre-programmed Javascript code to delete the invitation. This code I have tested. The code structure does not infringe the rights of the Facebook account and ensures safety.
Instructions for all friend requests sent on Facebook
First, you need to log in to your Facebook account. Then go to the link below to see all the friend requests that have been sent.
Please ignore the link123 ad to support me.
All invitations you have sent will be displayed. You can click cancel each invitation, but doing so will take a long time. I will show you how to use Javascript to solve it quickly.
Explain Javascript Code to remove invitation
You must access the correct link like the image above for the code to work. This Javascript code will make the variable i equal to 0, which means at the first friend request position. If it sees an undo button, it will perform a click action. Then increment i by one to move on to the next friend request.
Use Javascript code to delete all sent invitations
To use the code, right-click and select inspect element or press F12. The developer console will appear. After measuring, select the Console tab to paste and execute the Javascript command below.
javascript: var x = document.getElementsByClassName("_55sr"); for (var i = 0; i < x.length; i++) { if (x[i].innerHTML == 'Hoàn tác') { x[i].click(); } }; alert("Success ! Đã xóa thành công các yêu cầu kết bạn"); window.open("https://anonyviet.com");
If you do not know what Javascript is and how the console tab works, read my explanation below. You will learn the amazing capabilities of Javascript and the functionality of the Console tab in the browser.
https://anonyviet.com/en-sao-nen-hoc-javascript/
After running the code, all invitations were revoked. Buttons undo became Add friends. A success message box will display.
Thus, all friend requests are canceled in less than 5 seconds. Javascript is really cool, you can scroll up to read my explanation of the language and its evolution in 2018.
Like fanpage Or follow the website for quick updates on good articles.
Good luck
Lmint.