-
-
Save botmtl/7a3dc114a082c12570b63320a2879385 to your computer and use it in GitHub Desktop.
Quickly remove all -deactivated - friends from VK
This file contains 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
// Run from console on developers tools (chrome dev tools) | |
// Go to friends page from your profile and open console F12 or alt+cmd+I | |
Array.from(document.querySelectorAll('[src*="images/deactivated_100"]')).forEach(function(e){ | |
e.parentNode.parentNode.nextElementSibling.querySelector("a[onclick*='delete']").onclick(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment