After attempting to execute this function, I noticed that nothing occurs;
function alert() {
var notification = webkitNotifications.createNotification(
'',
'title',
'this is the message'
);
notification.show();
}
I searched extensively on Google for information regarding desktop notifications in Google Apps Script, but unfortunately found no relevant results.