enuchi / React-Google-Apps-Script

This is your boilerplate project for developing React apps inside Google Sheets, Docs, Forms and Slides projects. It's perfect for personal projects and for publishing complex add-ons in the Google Workspace Marketplace.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to change the title of the add on?

saurav-bhagat opened this issue · comments

By default, it comes - AppScript Application, how can I change this text?

image

rushed.

Found the solution:

FYR:

export const openLauncherSidebar = () => {
  const html = HtmlService.createHtmlOutputFromFile('sidebar-launcher-page').setTitle('my-title');
  SpreadsheetApp.getUi().showSidebar(html);
};