Created
September 4, 2018 04:54
-
-
Save JefCurtis/bc6309941c42420f3358da988a1f5659 to your computer and use it in GitHub Desktop.
Gmail add-on: AppsScript JSON template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "oauthScopes": [ | |
| "https://www.googleapis.com/auth/gmail.addons.execute", | |
| "https://www.googleapis.com/auth/gmail.readonly" | |
| ], | |
| "gmail": { | |
| "name": "<%= htmlWebpackPlugin.options.addon.name %>", | |
| "logoUrl": "https://i.imgur.com/Em0d7Tc.png", | |
| "contextualTriggers": [{ | |
| "unconditional": { | |
| }, | |
| "onTriggerFunction": "handleEntryPoint" | |
| }], | |
| "primaryColor": "#4285F4", | |
| "secondaryColor": "#4285F4" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment