Facebook Notification Badges

By haldean Last update Dec 30, 2008 — Installed 609 times.
// ==UserScript==
// @name        Facebook Notification Badges
// @namespace   http://fluidapp.com
// @description Display a dock badge for Facebook Notifications when using Fluid.
// @include     *facebook.com/*
// @author      Will Brown
// ==/UserScript==

updateBadges();

function updateBadges() {
	window.fluid.dockBadge = document.getElementById('presence_notifications_count').getElementsByTagName('strong')[0].innerHTML;
	setTimeout("updateBadges", 1);
}