Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an hosted example code (Javascript) that demonstrates Chrome desktop notifications? I'd like that use that in my own code.

Update: Here's a blog post explaining webkit notifications with an example.

share|improve this question
1  
I've left an answer below updated as of Nov 2012, after HTML notifications became deprecated. It has an actual example like the one you were looking for. – Dan Dascalescu Nov 11 '12 at 4:15

5 Answers

up vote 38 down vote accepted

Here's a working example for displaying desktop notifications in Chrome and hooking into the onclick event. The latter can be useful because since September 2012, HTML notifications have been deprecated, and even basic styling like hyperlinking to an action link, is no longer available.

<script>
function notify() {
  var havePermission = window.webkitNotifications.checkPermission();
  if (havePermission == 0) {
    // 0 is PERMISSION_ALLOWED
    var notification = window.webkitNotifications.createNotification(
      'http://i.stack.imgur.com/dmHl0.png',
      'Chrome notification!',
      'Here is the notification text'
    );

    notification.onclick = function () {
      window.open("http://stackoverflow.com/a/13328397/1269037");
      notification.close();
    }
    notification.show();
  } else {
      window.webkitNotifications.requestPermission();
  }
}  
</script>

<div style="width: 300px; height: 300px; background: yellow" onclick="notify()">
Cick here to notify
</div>
share|improve this answer
3  
I'm shocked that this answer has 0 votes. This was exactly what I was looking for. Stack Overflow really has gone downhill hasn't it? – mghaoui Nov 20 '12 at 11:23
2  
Nice, concise example -- thanks! – Jon Schneider Dec 17 '12 at 13:56
1  
@mghaoui - popular != true (necessarily). i've marked this one as the correct answer. – Sridhar Ratnakumar Feb 17 at 21:07
1  
Thank you sir, this is excatly what i'm looking for. – orosznyet Apr 12 at 13:06

Check the design and API specification (it's still a draft) or check the source from this webpage for a simple example: It's mainly a call to window.webkitNotifications.createNotification.

If you want a more robust example (you're trying to create your own Google Chrome's extension, and would like to know how to deal with permissions, local storage and such), check out Gmail Notifier Extension: download the crx file instead of installing it, unzip it and read its source code.

share|improve this answer
12  
210computing.com/google/chrome_notifications.html is what I'm looking for. Thanks! – Sridhar Ratnakumar Feb 28 '10 at 20:04
Isn't there anything which works for all browsers ? – Royi Namir Aug 21 '12 at 11:32
@Royi, There is a Firefox extension, as well as a native Firefox implementation which is coming sooner or later. In the case of Internet Explorer, a possible solution would be to ask users of your site to download Chrome Frame, as this would be a viable solution to get notifications working. There is some other Microsoft Solution. – George Bailey Oct 10 '12 at 20:30

I like: http://slides.html5rocks.com/#notifications-api

share|improve this answer
The Twitter example there no longer works. – Dan Dascalescu Nov 11 '12 at 2:56
You should tell html5rocks.com/en/profiles One of em must work for Twitter =) – Rudie Nov 11 '12 at 10:41
Heh. Hakim was the best guy to notify, since I happen to have contributed to his presentation framework. – Dan Dascalescu Nov 11 '12 at 10:44

Here is completely standalone JavaScript plugin for notifications in Chrome. http://pixelbay.cz/javascript-plugin-for-desktop-notifications-in-chrome/

share|improve this answer
Useful, except the only function I need is the clear-all notifications! – Phil Cross Feb 7 at 14:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.