Last active
September 4, 2024 15:30
-
-
Save 1337hero/c7b224c15701e3cbfb4470559b915c5b to your computer and use it in GitHub Desktop.
Uncheck Twitter/X interests
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
var counter = 0; | |
var wait = 2800; | |
var interests = $$('input:checked'); | |
interests.forEach( (w) => { | |
var current = counter; | |
setTimeout(() => { | |
console.log(current + '/' + interests.length); | |
w.click(); | |
}, wait * counter); | |
counter++; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In order to use this, navigate to https://x.com/settings/your_twitter_data/twitter_interests
Open the browser dev tools and open the console
Copy the code into the console to execute it.