Skip to content

Instantly share code, notes, and snippets.

@dgitman
Last active April 18, 2024 20:09
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgitman/561b783174e163bddb46c177f4a14b08 to your computer and use it in GitHub Desktop.
Save dgitman/561b783174e163bddb46c177f4a14b08 to your computer and use it in GitHub Desktop.
Twitter Unmute All Muted Accounts
# Go To https://twitter.com/settings/muted/not_following
# Open the browser developer tools
# Paste into browser console
let autoUnblock = setInterval(function() {
window.scrollBy(0, window.innerHeight);
document.querySelectorAll('[aria-label^="Unmute"]').forEach(function(account) {
account.click()
});
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment