Skip to content

Instantly share code, notes, and snippets.

View arterm-sedov's full-sized avatar

arterm-sedov

View GitHub Profile
@arterm-sedov
arterm-sedov / ok_remove_all_posts.js
Last active March 31, 2024 11:34
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);