Twitter counter eraser

Hide the Twitter's Reply/Favorite/Retweet Counter. [The new UI is not supported at the moment]

  1. // ==UserScript==
  2. // @name Twitter counter eraser
  3. // @name:ja [Twitter] カウンターを非表示
  4. // @description Hide the Twitter's Reply/Favorite/Retweet Counter. [The new UI is not supported at the moment]
  5. // @description:ja Twitterから、リプライ/お気に入り/リツイートのカウンターを削除。他人の承認が見てられない人のためのプラグインです。※新UIには今の所対応しておりません。
  6. // @namespace masshiro.blog
  7. // @version 20200412
  8. // @author masshiro
  9. // @license MIT License
  10. // @match https://twitter.com/*
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. var style = document.createElement('style');
  17. style.type = 'text/css';
  18. style.appendChild(document.createTextNode('.ProfileTweet-actionCountForPresentation,.MomentCapsuleLikesCount,.tweet-stats-container,[data-testid="viewCount"]{display:none !important;}'));
  19. document.getElementsByTagName('head')[0].appendChild(style);
  20. })();