Skip to content

Instantly share code, notes, and snippets.

@VoidSec
Created September 30, 2024 14:03
Show Gist options
  • Save VoidSec/661f87d7c443cafe0cd9cfb6dd585fd0 to your computer and use it in GitHub Desktop.
Save VoidSec/661f87d7c443cafe0cd9cfb6dd585fd0 to your computer and use it in GitHub Desktop.
Remove/clean Twitter interests
1. navigate to: https://x.com/settings/your_twitter_data/twitter_interests
2. run the following script in the browser console:
```
javascript:(function clickCheckedItems(){let i=document.querySelectorAll("input[type='checkbox']:checked");if(i.length>0){i.forEach((w,n)=>{if(n<15){setTimeout(()=> w.click(),Math.random()*6000+1000);}});setTimeout(clickCheckedItems,15000);}})();
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment