-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
30 lines (30 loc) · 958 Bytes
/
plugin.json
File metadata and controls
30 lines (30 loc) · 958 Bytes
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
{
"name": "Sequence Time Interval Plugin",
"url": "https://github.com/91jaeminjo/sequence_time_interval_plugin",
"description": "Customization of Posthog's Event Sequence Timer Plugin",
"main": "index.js",
"config": [
{
"key": "eventsToTrack",
"hint": "**Format:**`(eventA,eventB),(eventC,eventD)` **Spaces are not allowed**",
"name": "List of events to track time differences on",
"type": "string",
"order": 1,
"default": "",
"required": true
},
{
"key": "updateTimestamp",
"hint": "Selecting 'Yes' will track _last touch_, while selecting 'No' will track first touch.",
"name": "Update timestamp on every new first event?",
"type": "choice",
"order": 2,
"choices": [
"Yes",
"No"
],
"default": "Yes",
"required": false
}
]
}