我希望 chrome 以固定的时间间隔通知我。我尝试编写这段代码,但只显示一次。
var notification = webkitNotifications.createNotification(
'icon.png',
'Free your eyes',
'Please take a break'
);
function showNotify()
{
notification.show();
setTimeout("showNotify()", 2000);
}
showNotify();