I'm working on a web app that does notifications much the same as Twitter, Facebook, and StackOverflow.
When there are async notifications sent to the notification area on these websites, you'll notice that usually the <title>
is also updated to reflect the notification.
<title>(3) Twitter / Home</title>
I'm wondering if either Firefox or Chome have a Badge
api whereby we can send a badge to the dock/taskbar that sums up all of the notifications (much the same as Apple Mail.app)? I am fairly confident that IE wouldn't have this.
So if the browser has a twitter notification,
It would also have a dock notification
note, these graphics are OS X, but my question is generic... ie: all OS platforms
My personal vision for this would be to add a meta tag to the page when the notification is sent to the client.
<meta notification-badge="3" />
If there is not an API for this, is there a way to swap out the browser icon asynchronously to achieve the same effect?