Google Reader All Items Unread Counter Hider

By arikfr Last update Jul 17, 2008 — Installed 75 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0
// ==UserScript==
// @name           Google Reader All Items Unread Counter Hider
// @namespace      http://www.arikfr.com/
// @description    Hides the unread items counter in Goolge Reader (only the all items coutner. Leaves the per feeds counts).
// @include        http://www.google.com/reader/*
// ==/UserScript==

unsafeWindow.document.watch('title',
  function(prop, oldval, newval) {
     return ("Google Reader");
  });

GM_addStyle("#reading-list-unread-count{display:none;}");