Skip to content

Instantly share code, notes, and snippets.

@valsaven
Last active May 15, 2018 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save valsaven/5608f1c8021eaa58a21a627938532422 to your computer and use it in GitHub Desktop.
Save valsaven/5608f1c8021eaa58a21a627938532422 to your computer and use it in GitHub Desktop.
Remove all audio files from Vkontakte profile. Удалить все аудиозаписи из профиля Вконтакте.
document.querySelectorAll('.audio_act._audio_act_delete').forEach(audioDeleteButton => audioDeleteButton.click());
(function () {
'use strict';
if (!confirm('Удалить все записи со стены?')) return;
var deletePostLink = document.body.querySelectorAll('a.ui_actions_menu_item[onclick^="wall.deletePost"]');
for (var i = 0; i < deletePostLink.length; i++) {
deletePostLink[i].click();
}
alert(deletePostLink.length + ' posts deleted');
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment