Skip to content

Instantly share code, notes, and snippets.

View Metalhearf's full-sized avatar
💻
probably locking myself out of SSH.

Metalhearf Metalhearf

💻
probably locking myself out of SSH.
View GitHub Profile
@Metalhearf
Metalhearf / untick_twitter_ad_settings.js
Last active April 25, 2024 14:54 — forked from padajo/untick_twitter_ad_settings.js
Untick all Twitter (X) ad recommendations
/*
* 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) {