Skip to content

Instantly share code, notes, and snippets.

@durkes
durkes / clear_x.js
Last active February 13, 2026 02:39
Script to delete all X (Twitter) posts and replies
/* While signed in, navigate to your Profile > Replies page
and run the following script from DevTools Console */
(() => {
const sleep = (ms) => new Promise(r => setTimeout(r, ms));
const normalize = (s) => (s || "").replace(/\s+/g, " ").trim().toLowerCase();
const state = {
running: false,
processed: new Set(),