如何将自定义菜单添加到Google Sheet Addon

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将自定义菜单添加到Google Sheet Addon相关的知识,希望对你有一定的参考价值。

我的Google Sheet Addon没有启动自定义项目,我想在示例中显示“午餐”和“创建模板”子菜单IN autoCrat Addon我们可以看到午餐按钮(如何实现这一点)

下面我附上了Sample脚本

enter image description here

function onInstall(e) {
  onOpen(e);
}

function onOpen(e) {
  SpreadsheetApp.getUi() // Or DocumentApp or FormApp.
      .createMenu('Awesome Admin')
  
      .addItem('Launch Admin Console', 'showSidebar')
      .addItem('Create Tamplete', "newSheet")
      .addToUi();
}



function showSidebar() {
  var html = HtmlService.createHtmlOutputFromFile('index')
      .setTitle('G Suite Admin Console')
      .setWidth(400);
  SpreadsheetApp.getUi() // Or DocumentApp or FormApp.
      .showSidebar(html);
}
答案

而不是createMenu使用createAddonMenu()

参考

https://developers.google.com/apps-script/guides/menus#menus_for_add-ons_in_google_sheets_docs_or_forms

以上是关于如何将自定义菜单添加到Google Sheet Addon的主要内容,如果未能解决你的问题,请参考以下文章

如何将自定义标记图标添加到 Google 地图?

如何将自定义选项添加到 Microsoft Edge 右键菜单?

如何将自定义图标添加到 Oro 前台菜单项?

如何将自定义图层添加到 Google 地图

如何将自定义按钮添加到 react-google-maps?

如何将自定义菜单项添加到 UITextView 菜单,这是指向所选单词的***页面的链接?