Skip to content

Instantly share code, notes, and snippets.

@mvsde
Created July 22, 2021 12:03
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 mvsde/61da02be1187fd3e431132e5da8fcd21 to your computer and use it in GitHub Desktop.
Save mvsde/61da02be1187fd3e431132e5da8fcd21 to your computer and use it in GitHub Desktop.
Disable all “interests” Twitter thinks you are interested in.
/**
* 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