Apps Script Toast
function toastMessage() {
SpreadsheetApp.getActive().toast("Message");
}
Impossible Ibex
function toastMessage() {
SpreadsheetApp.getActive().toast("Message");
}
function toastMessageTimeout() {
// Display the toast for 15 seconds
SpreadsheetApp.getActive().toast("Message", "Title", 15);
}