Skip to content

Instantly share code, notes, and snippets.

@arterm-sedov
Last active March 31, 2024 11:34
Show Gist options
  • Save arterm-sedov/6ddab675c642b57247ce216b74800dc7 to your computer and use it in GitHub Desktop.
Save arterm-sedov/6ddab675c642b57247ce216b74800dc7 to your computer and use it in GitHub Desktop.
A script to remove all posts from your ok.ru wall
(function ()
{
'use strict';
if (!confirm('Удалить все заметки со стены?')) return;
var deletePostLink = document.body.querySelectorAll('a.delete-stub_cancel');
for (var i = 0; i < deletePostLink.length; i++)
{
deletePostLink[i].click();
}
alert( 'удалено записей:'+deletePostLink.length);
}());
@arterm-sedov
Copy link
Author

Спасибо, может, кому-то новый рецепт пригодится

@goglik2
Copy link

goglik2 commented Mar 31, 2024

код не работает если есть темы от других авторов, которые уже не являются модераторами группы, если получится исправить скину

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment