// ==UserScript==
// @name            livedoor Reader No Midoku
// @namespace       http://espion.just-size.jp/archives/05/136155838.html
// @include         http://reader.livedoor.com/reader/
// ==/UserScript==
//
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// Copyright (C) 2005 by Jonathon Ramsey (jonathon.ramsey@gmail.com)
// Last modified by Kyosuke Takayama.
//
// Original source.
// http://userscripts.org/scripts/show/4146

unsafeWindow.document.watch('title',
      function(p, o, str) {
         str.match(/(\d+)/);
         return RegExp.$1;
      });


