Skip to content

Instantly share code, notes, and snippets.

@wgx
Created July 16, 2020 16:33
Show Gist options
  • Save wgx/84346fa11db0a9f74cdcb144ce0db70f to your computer and use it in GitHub Desktop.
Save wgx/84346fa11db0a9f74cdcb144ce0db70f to your computer and use it in GitHub Desktop.
Paste into the console on Twitter to hide tweets from verified accounts
// source: https://news.ycombinator.com/item?id=23860213
for (const node of document.querySelectorAll('[aria-label="Verified account"]')) {
node.closest('[role="article"]').remove()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment