Skip to content

Instantly share code, notes, and snippets.

@shreyasgune
Created October 24, 2021 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shreyasgune/af783ae05c4b3e49b7261a02edcd3f0a to your computer and use it in GitHub Desktop.
Save shreyasgune/af783ae05c4b3e49b7261a02edcd3f0a to your computer and use it in GitHub Desktop.
Clear Twitter Interests
var timer=1000; document.querySelectorAll( "div > input[type='checkbox']:checked" ).forEach((interest) => { setTimeout( function(){interest.click(); interest.scrollIntoView()},timer ); timer+=2000; });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment