Created
September 30, 2024 14:03
-
-
Save VoidSec/661f87d7c443cafe0cd9cfb6dd585fd0 to your computer and use it in GitHub Desktop.
Remove/clean Twitter interests
This file contains hidden or 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
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