-
Notifications
You must be signed in to change notification settings - Fork 10
/
manifest.json
54 lines (54 loc) · 1.37 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
{
"author": "Andr\u00e9 Natal",
"description": "Hands-free voice addon with personalized keyword and local voice processing.",
"gateway_specific_settings": {
"webthings": {
"exec": "{nodeLoader} {path}",
"primary_type": "adapter",
"strict_max_version": "*",
"strict_min_version": "0.10.0"
}
},
"homepage_url": "https://github.com/andrenatal/voice-addon",
"id": "voice-addon",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "Voice Control",
"options": {
"default": {
"keyword": "hey snips",
"speaker": "USB",
"microphone": "USB"
},
"schema": {
"type": "object",
"description": "Configuration for your voice addon",
"properties": {
"token": {
"type": "string",
"description": "Navigate to Settings -> Developer -> Create local authorization -> Allow. Then copy the presented JSON Web Token in this field"
},
"keyword": {
"type": "string",
"enum": [
"hey snips"
],
"default": "USB",
"description": "Keyword used to trigger the command."
},
"speaker": {
"type": "string",
"enum": [
"USB"
],
"default": "USB"
}
},
"required": [
"token"
]
}
},
"short_name": "Voice",
"version": "1.0.2"
}