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.

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

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.

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

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

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==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();
})();