Skip to content

Instantly share code, notes, and snippets.

@brenogazzola
Forked from ScottMaclure/slack_draft_deleter.js
Created November 11, 2022 20:33
Show Gist options
  • Save brenogazzola/6d1b2c41c8cb9815094a3e33a87fc9a3 to your computer and use it in GitHub Desktop.
Save brenogazzola/6d1b2c41c8cb9815094a3e33a87fc9a3 to your computer and use it in GitHub Desktop.
Slack Draft Deleter
// Remove all drafts from your drafts view
// Navigate to drafts
// F12 to raise dev console
// Paste the below
(async function(x) {
for (const e of [...document.querySelectorAll('[type="trash"]')]) {
e.click();
await new Promise(resolve => setTimeout(resolve, 500))
document.querySelector('[data-qa="drafts_page_draft_delete_confirm"]').click();
await new Promise(resolve => setTimeout(resolve, 1500))
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment