-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
98 lines (98 loc) · 2.12 KB
/
manifest.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "Browser Personalization",
"description": "Get access to whitelisted attributes and segments from the Browser in realtime",
"picture": "picture.png",
"index": "ship.js",
"version": "0.0.4",
"tags": [
"smart-notifier",
"incoming",
"outgoing",
"oneColumn"
],
"tabs": [
{
"title": "Installation",
"url": "/admin.html",
"size": "small",
"editable": false
}
],
"settings": [
{
"name": "script",
"title": "Code to be run everytime user is updated",
"type": "string",
"format": "code",
"default": "console.log(user, segments)"
}
],
"private_settings": [
{
"name": "whitelisted_domains",
"title": "Domains from which access will be allowed",
"type": "array",
"format": "table",
"items": {
"type": "string"
},
"default": [
"hull.io"
]
},
{
"name": "synchronized_segments",
"title": "User Filter",
"description": "Only users from these segments will be sent to the browser",
"type": "array",
"format": "segment",
"items": {
"type": "string"
},
"default": []
},
{
"name": "public_traits",
"title": "Traits that will be sent",
"type": "array",
"format": "trait",
"items": {
"type": "string"
},
"default": [
"domain",
"email"
]
},
{
"name": "public_segments",
"title": "Public User Segment Names",
"description": "Segment names that will visible client-side",
"type": "array",
"format": "segment",
"items": {
"type": "string"
},
"default": []
},
{
"name": "public_account_segments",
"title": "Public Account Segment Names",
"description": "Account Segment names that will be visible client-side",
"type": "array",
"format": "account_segment",
"items": {
"type": "string"
},
"default": []
}
],
"resources": [],
"readme": "readme.md",
"ui": false,
"subscriptions": [
{
"url": "/smart-notifier"
}
]
}