Created
December 26, 2021 19:36
-
-
Save victory-sokolov/f714acccf09208438068c49c199fc28e to your computer and use it in GitHub Desktop.
Twitter uncheck all 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
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