有没有办法将菜单添加到谷歌文档

时间:2012-11-02 21:10:44

标签: google-apps-script google-docs google-docs-api

使用Google电子表格,使用google apps脚本向界面添加按钮非常简单:

var ss = SpreadsheetApp.getActiveSpreadsheet();
var menuEntries = [ {name: "Say Hi", functionName: "sayHi"},
                  {name: "Get this citation", functionName: "main"} ];
ss.addMenu("Tutorial", menuEntries);

Google文档是否有类似内容?

2 个答案:

答案 0 :(得分:1)

是的,你现在可以!

这是一个新功能。

解释in the docs here

答案 1 :(得分:0)

今天无法做到这一点,但请在问题跟踪器上标记并跟踪this issue