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

上一篇:[NOIP2014]解方程


下一篇:将文献的bibtex引用格式批量转换为bibitem格式参考文献