View Shorten Links
function onOpen(e) { | |
DocumentApp.getUi().createAddonMenu() | |
.addItem("Shorten Links", 'displayLinks') | |
.addToUi(); | |
} | |
function onInstall(e) { | |
onOpen(e); | |
} |