Skip to content

Instantly share code, notes, and snippets.

@timheuer
Created December 1, 2019 06:15
Show Gist options
  • Save timheuer/d975829786febfd4919083dd5207ebc0 to your computer and use it in GitHub Desktop.
Save timheuer/d975829786febfd4919083dd5207ebc0 to your computer and use it in GitHub Desktop.
remove interests on twitter
// https://twitter.com/settings/your_twitter_data/twitter_interests/interest
var x = document.querySelectorAll("input[checked]");
var i;
for (i = 0; i < x.length; i++) {
x[i].checked = "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment