Files
catmk2/task1/Code.js
louiscklaw e46f1afc57 update,
2025-02-01 02:00:23 +08:00

11 lines
449 B
JavaScript

function onOpen() {
const ui = SpreadsheetApp.getUi();
ui.createMenu("Automator Menu " + VER)
// .addItem("send 繳費通知 (未通知 -> 已通知)", "processPaymentNotice")
.addItem("debug-Say Hello", "sayHelloworld")
// .addItem("debug-helloWorldEmail", "helloWorldEmail")
// .addItem("debug-helloWorldWriteCell", "helloWorldWriteCell")
// .addItem("debug-processPaymentNotice", "processPaymentNotice")
.addToUi();
}