// ==UserScript==
// @name           Google Reader title unread count first
// @namespace      http://lieschke.net/projects/greasemonkey/
// @description    Puts the unread count at the start of the title for Google Reader pages. Adapted from http://userscripts.org/scripts/source/6220.user.js
// @include        http*://www.google.com/reader/*
// ==/UserScript==

setInterval(function() {
	if (matches = document.title.match(/Google Reader \((\d+\+?)\)/)) {
		document.title = '(' + matches[1] + ') Google Reader';
	}
}, 1000);