Created
July 22, 2021 12:03
-
-
Save mvsde/61da02be1187fd3e431132e5da8fcd21 to your computer and use it in GitHub Desktop.
Disable all “interests” Twitter thinks you are interested in.
This file contains 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
/** | |
* Copy into dev tools console and hit enter. | |
* It may take a while and the page will be blocked while the script is running. | |
* | |
* Source: | |
* https://twitter.com/ChrisFerdinandi/status/1417947102731190277 | |
* https://twitter.com/ChrisFerdinandi/status/1417947104111104002 | |
*/ | |
let checked = document.querySelectorAll('input:checked') | |
for (let box of checked) { | |
box.click() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment