Skip to content

Instantly share code, notes, and snippets.

@dhjw
Last active May 2, 2024 05:56
Show Gist options
  • Save dhjw/13c4b06357551c394eab014d536f1596 to your computer and use it in GitHub Desktop.
Save dhjw/13c4b06357551c394eab014d536f1596 to your computer and use it in GitHub Desktop.
Console Javascript to unblock or unmute all Twitter/X accounts
# TODO: loop until b is empty, automatically scroll down with a short delay
# click all visible Unblock buttons
var b = document.querySelectorAll("div[aria-label='Blocked']")
for (i = 0; i < b.length; i++) b[i].click();
# click all visible Unmute buttons
var b = document.querySelectorAll("div[aria-label^='Unmute']")
for (i = 0; i < b.length; i++) b[i].click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment