-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathappsscript.json
44 lines (44 loc) · 1.23 KB
/
appsscript.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"timeZone": "America/Los_Angeles",
"exceptionLogging": "STACKDRIVER",
"runtimeVersion": "V8",
"dependencies": {
"enabledAdvancedServices": [
{
"userSymbol": "Drive",
"serviceId": "drive",
"version": "v3"
}
]
},
"oauthScopes": [
"https://www.googleapis.com/auth/script.external_request",
"https://www.googleapis.com/auth/drive.addons.metadata.readonly",
"https://www.googleapis.com/auth/drive.file",
"https://www.googleapis.com/auth/drive",
"https://www.googleapis.com/auth/drive.readonly",
"https://www.googleapis.com/auth/documents"
],
"urlFetchWhitelist": [
"https://*.googleusercontent.com/",
"https://*.googleapis.com/"
],
"addOns": {
"common": {
"name": "Name with Intelligence",
"logoUrl": "https://fonts.gstatic.com/s/i/googlematerialicons/drive_file_rename_outline/v12/googblue-48dp/2x/gm_drive_file_rename_outline_googblue_48dp.png",
"layoutProperties": {
"primaryColor": "#4285f4",
"secondaryColor": "#3f8bca"
}
},
"drive": {
"homepageTrigger": {
"runFunction": "onHomepageOpened"
},
"onItemsSelectedTrigger": {
"runFunction": "onDriveItemsSelected"
}
}
}
}