Google Inbox Count Display

By threedaymonk Last update Apr 3, 2009 — Installed 75 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0
// ==UserScript==
// @name           Google Inbox Count Display
// @namespace      http://po-ru.com/
// @description    Show unread message count at the start of the title to be more readable in tabs
// @include        http://mail.google.com/*
// @include        https://mail.google.com/*
// ==/UserScript==

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