-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsscript.json
More file actions
47 lines (46 loc) · 1.26 KB
/
appsscript.json
File metadata and controls
47 lines (46 loc) · 1.26 KB
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
45
46
47
{
"timeZone": "America/New_York",
"exceptionLogging": "STACKDRIVER",
"runtimeVersion": "V8",
"dependencies": {
"enabledAdvancedServices": [
{
"userSymbol": "Drive",
"serviceId": "drive",
"version": "v3"
}
]
},
"oauthScopes": [
"https://www.googleapis.com/auth/drive.addons.metadata.readonly",
"https://www.googleapis.com/auth/drive",
"https://www.googleapis.com/auth/spreadsheets",
"https://www.googleapis.com/auth/script.locale"
],
"addOns": {
"common": {
"name": "Book Organizer",
"logoUrl": "https://lh3.googleusercontent.com/u/0/drive-viewer/AKGpihYAGF9B3wkpmd8Vxez1vYe3H5OBCcn7HOLaw4Rlx8zwxRcYGiORfq0Vq3vv7M4HHxq4SmFB2MchUqIPASAaELUYRbO9ztTrJso=w1161-h1052",
"useLocaleFromApp": true,
"homepageTrigger": {
"runFunction": "onHomepage",
"enabled": true
},
"universalActions": [{
"label": "Settings",
"runFunction": "onOpenSettings"
}, {
"label": "Statistics",
"runFunction": "onOpenStatistics"
},{
"label": "About",
"runFunction": "onOpenAbout"
}]
},
"drive": {
"onItemsSelectedTrigger": {
"runFunction": "onDriveItemsSelected"
}
}
}
}