// ==UserScript== // @id twitter.com-0c8ee385-6991-418e-940e-106644506a90@scriptish // @name Twitter Detox // @version 1.0 // @namespace https://jnv.github.io // @author jnv // @description Remove addictive and gratifying stuff from Twitter, like followers count and stars in notifications. // @include https://twitter.com/* // @include https://mobile.twitter.com/* // @run-at document-end // @grant GM_addStyle // @downloadURL none // ==/UserScript== var style = "[href='/followers'], [data-component-context='follow_activity'],"+ "[data-component-context='follower_activity']," + "[data-component-context='retweeted_mention_activity'], [data-component-context='favorite_activity'],"+ "[data-component-context='retweeted_retweet_activity'],"+ "[data-component-context='favorited_mention_activity'],[data-component-context='favorited_retweet_activity'],"+ ".notifications .new-count"+ "{ display: none !important }"; GM_addStyle(style); // data-component-context="retweeted_retweet_activity"