Twitter Carefree

Remove stuff from Twitter, like following/followers, retweets and likes count.

  1. // ==UserScript==
  2. // @id twitter.com-0c8ee385-6991-418e-940e-106644506a90@scriptish
  3. // @name Twitter Carefree
  4. // @version 2016.01.03
  5. // @namespace https://jnv.github.io
  6. // @description Remove stuff from Twitter, like following/followers, retweets and likes count.
  7. // @include https://twitter.com/*
  8. // @include https://mobile.twitter.com/*
  9. // @grant GM_addStyle
  10. // @license CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/
  11. // ==/UserScript==
  12. /*
  13. based on Carefree CSS by @fet
  14. from http://metalbat.com/feel-good/index.html
  15. */
  16.  
  17. /*
  18. Carefree v0.0.2 by @fet
  19.  
  20. Load this custom stylesheet in your browser to hide the following elements on Twitter pages:
  21. - Follower counts for users
  22. - Following counts for users
  23. - Join dates for users
  24. - Retweet counts for tweets
  25. - Favorite counts for tweets
  26. I have found that this helps me avoid having my impression of people colored by how popular they are. It has gotten easier to relax and just pay attention to what people are saying, instead. I hope you find it helpful too!
  27. */
  28.  
  29.  
  30. var selectors = `[data-element-term="follower_stats"],
  31. [data-element-term="following_stats"],
  32. .DashboardProfileCard-statList,
  33. .js-mini-profile-stats,
  34. .js-tweet-stats-container,
  35. .ProfileNav-item--following,
  36. .ProfileNav-item--followers,
  37. .ProfileTweet-actionCount,
  38. .ProfileHeaderCard-joinDateText,
  39. .ProfileTweet-action--analytics`
  40.  
  41. var style = selectors + " { visibility: hidden !important }";
  42. delete selectors;
  43. GM_addStyle(style);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址