Skip to content

Instantly share code, notes, and snippets.

@victory-sokolov
Created December 26, 2021 19:36
Show Gist options
  • Save victory-sokolov/f714acccf09208438068c49c199fc28e to your computer and use it in GitHub Desktop.
Save victory-sokolov/f714acccf09208438068c49c199fc28e to your computer and use it in GitHub Desktop.
Twitter uncheck all interests
function clearNextInterest(){
const selector = "div > input[type='checkbox']:checked";
const next = document.querySelector(selector);
if(next){
next.scrollIntoView();
next.click();
setTimeout(clearNextInterest,500)
};
};
clearNextInterest();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment