Skip to content

Instantly share code, notes, and snippets.

@Luchanso
Created October 3, 2021 15:35
Show Gist options
  • Save Luchanso/d7c2164b34f4175012b27b3cdb5bd23c to your computer and use it in GitHub Desktop.
Save Luchanso/d7c2164b34f4175012b27b3cdb5bd23c to your computer and use it in GitHub Desktop.
Delete all vk posts
document.querySelectorAll('.ui_actions_menu._ui_menu.ui_actions_menu--actionSheet').forEach((item) => {
item.querySelectorAll('.ui_actions_menu_item').forEach((item2) => {
if (item2.innerHTML === 'Удалить запись') {
item2.click()
}
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment