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

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

做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

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