我会发出超时自动关闭的通知。
但是,一些通知会在超时结束之前触发。
那么,如何在显示下一个通知之前关闭当前通知?
我只希望在任何特定时间显示一个。
背景:
chrome.extension.onMessage.addListener(function(request, sender, sendResponse) {
var notify = webkitNotifications.createNotification('icon-48.png', 'Notification', request.message);
notify.show();
setTimeout(function(){ notify.cancel(); },10000);
});
语境:
chrome.extension.sendMessage({
message: "Fetching stuff from " + thestuffname},
function(response) {
return response;
});