Last active
November 10, 2025 14:08
-
-
Save andrusha/4544966 to your computer and use it in GitHub Desktop.
Remove all audio files from vkontakte profile (javascript console snippet). Удалить все аудиозаписи из профиля вконтакте.
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
| var nodes = document.querySelectorAll(".audio_remove"), i = 0, inter = setInterval( function() { if (i == nodes.length) { clearInterval(inter);}; var evt = document.createEvent("MouseEvents"); evt.initMouseEvent("click", true, true, nodes[i], 0, 0, 0, 0, 0, false, false, false, false, 0, null); nodes[i].dispatchEvent(evt); i++; }, 350); |
На 09.11.2025.
Рабочий способ для desktop vk.com (консоль разработчика): https://gist.github.com/TolyanDimov/f3465fed547e06d6ffb100abda6b63d5
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
2024, desktop