Gmail remove spam count

Remove spam message counter in gmail

  1. // ==UserScript==
  2. // @name Gmail remove spam count
  3. // @name:es Gmail elimina el contador de spam
  4. // @namespace http://tampermonkey.net/
  5. // @version 0.1
  6. // @description Remove spam message counter in gmail
  7. // @description:es Elimina el contador de mensajes de spam en gmail
  8. // @author IgnaV
  9. // @match https://mail.google.com/*
  10. // @icon https://ssl.gstatic.com/ui/v1/icons/mail/rfr/gmail.ico
  11. // @grant GM_addStyle
  12. // @license MIT
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17.  
  18. GM_addStyle('[data-tooltip="Spam"] span > a { font-weight: normal!important; }');
  19. GM_addStyle('[data-tooltip="Spam"] .bsU { display: none!important; }');
  20. })();