-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
68 lines (68 loc) · 1.81 KB
/
extension.json
File metadata and controls
68 lines (68 loc) · 1.81 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"displayName": "Branch Experiences and Measurement",
"name": "branch-mobile-growth",
"version": "1.1.0",
"platform": "web",
"description": "Powerful links and solutions that help you acquire, engage, and measure across all devices, channels, and platforms.",
"iconPath": "src/view/resources/branch_logo_store.svg",
"author": {
"name": "Branch",
"url": "http://branch.io",
"email": "integrations@branch.io"
},
"viewBasePath": "src/view/",
"configuration": {
"viewPath": "configuration/configuration.html",
"schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"branchKey": {
"type": "string",
"minLength": 41
},
"branchAPIURL": {
"type": "string"
}
},
"required": [
"branchKey"
],
"additionalProperties": true
}
},
"actions": [
{
"displayName": "Initialize Branch",
"name": "initializebranch",
"libPath": "src/lib/actions/initializeBranch.js",
"schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {}
}
},
{
"displayName": "Auto-Open Native App",
"name": "autoopenapp",
"libPath": "src/lib/actions/autoOpen.js",
"schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {}
},
"viewPath": "actions/autoOpen.html"
},
{
"displayName": "Track an Event",
"name": "logevent",
"libPath": "src/lib/actions/logEvent.js",
"schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {}
},
"viewPath": "actions/logEvent.html"
}
]
}