1
我試着運行這個功能,但沒有任何反應;如何在谷歌應用腳本中使用桌面通知?
function notify() {
var notification = webkitNotifications.createNotification(
'',
'title',
'this is the message'
);
notification.show();
}
我無法找到關於桌面通知谷歌在任何谷歌Apps腳本, 所以我在這裏。