Kill Twitter Interests

Unchecks all of Twitter's infered interests when you go to that page in you account settings. You need to manually click save.

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Kill Twitter Interests
// @version      0.1
// @description  Unchecks all of Twitter's infered interests when you go to that page in you account settings. You need to manually click save.
// @author       Ryan Castellucci @ryancdotorg
// @namespace    Violentmonkey Scripts
// @match        https://twitter.com/settings/your_twitter_data/twitter_interests
// @grant        none
// ==/UserScript==

(function(){
  var h = 0, timeout = Date.now() + 15000, a = function(){
    document.querySelectorAll(".interest-label>input:checked").forEach(function(e){h=1;e.checked=0;});
    if (!h) setTimeout(a, 100);
  };
  a();
})();