// @name Facebook chat // @desc Isolated Facebook chat with notifications // @url http://www.facebook.com/presence/popout.php new function() { var counter = 0; setInterval(checkMessages, 500); function checkMessages() { counter++; var iconMsg = 'http://bubbleshq.com/client/facebookNotification/fb-msg.ico'; var iconNoMsg = 'static.ak.fbcdn.net/favicon.ico'; if (document.title == 'Facebook Chat') SSB.setIcon(iconNoMsg); else SSB.setIcon(iconMsg); } }