Gmail remove spam count

Remove spam message counter in gmail

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

You will need to install an extension such as Stylus to install this style.

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

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

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

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name           Gmail remove spam count
// @name:es        Gmail elimina el contador de spam
// @namespace      http://tampermonkey.net/
// @version        0.1
// @description    Remove spam message counter in gmail
// @description:es Elimina el contador de mensajes de spam en gmail
// @author         IgnaV
// @match          https://mail.google.com/*
// @icon           https://ssl.gstatic.com/ui/v1/icons/mail/rfr/gmail.ico
// @grant          GM_addStyle
// @license        MIT
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle('[data-tooltip="Spam"] span > a { font-weight: normal!important; }');
    GM_addStyle('[data-tooltip="Spam"] .bsU { display: none!important; }');
})();