cheeriogs
cheeriogs copied to clipboard
google permissions
issue it wants all permissions to manipulate with all "gdrive sheets"
solution change permission to "manipulate only with current document" https://developers.google.com/apps-script/add-ons/concepts/editor-scopes#setting_explicit_scopes
{
...
"oauthScopes": [
"https://www.googleapis.com/auth/script.container.ui",
"https://www.googleapis.com/auth/spreadsheets.currentonly"
],
...
}
What functions of cheeriogs are you trying to restrict with that "https://www.googleapis.com/auth/script.container.ui" oauthScope?