This commit is contained in:
louiscklaw
2025-01-31 19:29:24 +08:00
parent 843c590c8b
commit abff74fd77
81 changed files with 7754 additions and 0 deletions

10
catmk2/task1/Code.js Normal file
View File

@@ -0,0 +1,10 @@
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();
}