Created
November 24, 2019 17:12
-
-
Save nsuan/2505f513cc178ab3d7a23e103a756dfd to your computer and use it in GitHub Desktop.
Tell twitter you're not interested in anything
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
inputs = document.getElementsByName('interest_checkbox'); | |
for (var i = 0; i < inputs.length; i++) { | |
inputs[i].checked = false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment