// ==UserScript==
// @name          hide spam count in gmail
// @namespace     http://spig.net/
// @description   hide the spam count in gmail
// @include       http*://mail.google.com/mail/*
// @include       http*://mail.google.com/hosted/*
// @include       http*://mail.google.com/a/*
// @date          2006-04-06
// @version       0.1.1
// @GM_version    0.6.4
// ==/UserScript==

(function() {
  ss = document.styleSheets[0];
  ss.insertRule('#ds_spam b { visibility: hidden; }', ss.cssRules.length);
  ss.insertRule('#ds_spam b::before {content: "Spam"; visibility: visible; font-weight: normal;}', ss.cssRules.length);
})();
