Skip to content

Instantly share code, notes, and snippets.

@1337hero
Last active September 4, 2024 15:30
Show Gist options
  • Save 1337hero/c7b224c15701e3cbfb4470559b915c5b to your computer and use it in GitHub Desktop.
Save 1337hero/c7b224c15701e3cbfb4470559b915c5b to your computer and use it in GitHub Desktop.
Uncheck Twitter/X interests
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++;
});
@1337hero
Copy link
Author

1337hero commented Sep 4, 2024

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment