何かをした後、次のコードを実行します。
var notification = webkitNotifications.createNotification(
'icon.png', // icon url - can be relative
'Done!', // notification title
'Just updated your list!' // notification body text
);
notification.show();
もちろん、これはユーザー画面に通知をポップアップ表示します。
とにかく、この通知のタイミングを合わせて、X 秒で自動的に閉じるようにしますか?
ありがとう!R