Skip to content

Instantly share code, notes, and snippets.

@jacob-ebey
Created July 28, 2023 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jacob-ebey/cfa3eebf23574119a39894d0433b2824 to your computer and use it in GitHub Desktop.
Save jacob-ebey/cfa3eebf23574119a39894d0433b2824 to your computer and use it in GitHub Desktop.
ByeByeBlue Boost
setInterval(() => {
const tweets = document.querySelectorAll(
`[data-testid="cellInnerDiv"] [data-testid="tweet"]`
);
for (const tweet of tweets) {
if (tweet.querySelector(`[data-testid="icon-verified"]`)) {
tweet.style.display = "none";
}
}
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment