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
/* | |
* To untick all the "personalised interests" that are used for ad targeting on twitter | |
* you go to this page: https://twitter.com/settings/your_twitter_data/twitter_interests | |
* | |
* Go to the inspector and run this code and it should untick all the ticked boxes | |
* in the list. You need a delay or the twitter API thinks you're trying to overload it. | |
*/ | |
var checkboxes = []; | |
document.querySelectorAll('input[type="checkbox"]').forEach((c) => { | |
if(c.checked) { |