livedoor Reader title unread count

By falconfx Last update Sep 24, 2007 — Installed 237 times.
// ==UserScript==
// @name            livedoor Reader title unread count
// @namespace       http://greasemonkey.blog67.fc2.com/
// @description     The title is changed into unread count
// @include         http://reader.livedoor.com/reader/*
// ==/UserScript==

unsafeWindow.document.watch('title',
  function(prop, oldval, newval) {
     if (matches = newval.match(/\((\d+\+?)\)/)) {
        newval = "(" + matches[1] + ')';
     }
     return (newval);
  });