码迷,mamicode.com
首页 > 其他好文 > 详细

chrome扩展,如何阻止浏览自动关闭桌面通知.

时间:2016-04-13 18:40:54      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

(!!!!以前的好用的, 现在不行了~)

做chrome扩展桌面通知, 可能不想让浏览器自动关闭某个重要的桌面通知.
那就不要使用 chrome.notifications.create

可以用 Web Notifications
用法:

var notification = new Notification(
  "New Email Received", {icon: "mail.png", tag: {msg} });

notification.onshow = function() {
  setTimeout(function(){
   notification.close()}, 15000)
};

参考:
http://www.w3.org/TR/notifications/
https://developer.chrome.com/extensions/api_index

chrome扩展,如何阻止浏览自动关闭桌面通知.

标签:

原文地址:http://www.cnblogs.com/zlog/p/5388045.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!