Created
January 5, 2020 12:33
-
-
Save pbaruns/eeeb75584979d047e1638666010e9c50 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function onOpen() { | |
// Add a menu with some items, some separators, and a sub-menu. | |
DocumentApp.getUi().createMenu('Utilities') | |
.addItem('Insert Date', 'insertAtCursor') | |
.addItem('Insert Time', 'insertTimeAtCursor') | |
.addItem('Insert Long Date', 'insertLDateAtCursor') | |
.addItem('Insert Date and Time', 'insertDTAtCursor') | |
.addToUi(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment