With the new Google App Script (new spreadsheet) when I create a menu for my Add-Ons using createAddonMenu() you will notice that Google add automatically a separator and a Help menu at the end. But I found nowhere documentation that tells what is the name of the function associated with the Help.
Would anybody know?
function onOpen(e) {
SpreadsheetApp.getUi().createAddonMenu()
.addItem('Test A', 'insertChart')
.addItem('Test B', 'updateCharts')
.addItem('Test C', 'updateCharts')
.addToUi();
}
