Skip to content

Instantly share code, notes, and snippets.

@andrusha
Last active November 10, 2025 14:08
Show Gist options
  • Select an option

  • Save andrusha/4544966 to your computer and use it in GitHub Desktop.

Select an option

Save andrusha/4544966 to your computer and use it in GitHub Desktop.
Remove all audio files from vkontakte profile (javascript console snippet). Удалить все аудиозаписи из профиля вконтакте.
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);
@TolyanDimov
Copy link

TolyanDimov commented Nov 9, 2025

На 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