Complete the code to open the Extensions menu in Google Sheets.
Click on the [1] menu to find add-ons.The Extensions menu is where you find and manage add-ons in Google Sheets.
Complete the code to install an add-on from the Google Workspace Marketplace.
Go to Extensions > [1] add-ons to browse and install.
The 'Get add-ons' option opens the marketplace to install new add-ons.
Fix the error in the code to open the add-on's sidebar.
After installing, click Extensions > [1] > Open sidebar.You must select your specific add-on's name to open its sidebar.
Fill both blanks to write a formula that uses an add-on function named MYFUNC.
= [1] (A1, [2])
The formula calls the add-on function MYFUNC with cell A1 and A2 as arguments.
Fill all three blanks to write a script snippet that opens an add-on sidebar in Google Sheets.
function showSidebar() {
var ui = SpreadsheetApp.getUi();
var html = HtmlService.createHtmlOutputFromFile('[1]')
.setTitle('[2]')
.setWidth([3]);
ui.showSidebar(html);
}The script loads the HTML file named 'Sidebar', sets the sidebar title, and width 400 pixels.
