回答

1

它不適用於應用程序腳本,但您可以編寫瀏覽器擴展程序來執行此操作。當然用戶也需要安裝它。

1

目前這是不可能的。 the Spreadsheet object上的當前方法組不包含任何訪問工具欄或添加新工具的功能。

您僅限於添加菜單,邊欄或定義自定義功能。

我自己居住使用的菜單項切換側邊欄,遠在the way described here

function onOpen() { 
    SpreadsheetApp.getUi() // Or DocumentApp or FormApp. 
     .createMenu('Custom Menu') 
     .addItem('Show sidebar', 'showSidebar') 
     .addToUi(); 
} 

function showSidebar() { 
    var html = HtmlService.createHtmlOutputFromFile('Page') 
     .setTitle('My custom sidebar') 
     .setWidth(300); 
    SpreadsheetApp.getUi() // Or DocumentApp or FormApp. 
     .showSidebar(html); 
}