Skip to content

Instantly share code, notes, and snippets.

@RobinFrcd
Created February 19, 2022 11:14
Show Gist options
  • Save RobinFrcd/8b52224f05db01e7465f67f3598e42d6 to your computer and use it in GitHub Desktop.
Save RobinFrcd/8b52224f05db01e7465f67f3598e42d6 to your computer and use it in GitHub Desktop.
Dismiss all twitter topics
// Dismiss all topics listed on https://twitter.com/YOUR_USERNAME/topics
var timer=100;document.querySelectorAll("[aria-label^='Dismiss'").forEach((interest) => {setTimeout(function(){interest.click()},timer);timer+=2000;});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment