Created
February 19, 2022 11:14
-
-
Save RobinFrcd/8b52224f05db01e7465f67f3598e42d6 to your computer and use it in GitHub Desktop.
Dismiss all twitter topics
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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