-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmanifest.json
85 lines (85 loc) · 2.7 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
{
"author": "WebThingsIO",
"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/WebThingsIO/voice-addon",
"id": "voice-addon",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "Voice Control",
"options": {
"default": {
"keyword": "hey webthings",
"speaker": "Default",
"microphone": "Default",
"debug": false
},
"schema": {
"type": "object",
"description": "Configuration for your voice addon",
"properties": {
"token": {
"title": "Authorization Token",
"description": "Navigate to Settings -> Developer -> Create local authorization -> Allow. Then, copy the generated JSON Web Token into this field.",
"type": "string"
},
"keyword": {
"title": "Wake Word",
"description": "Keyword used to trigger the command.",
"type": "string"
},
"speaker": {
"title": "Speaker",
"description": "Speaker to play audio from.",
"type": "string",
"enum": [
"Default",
"USB",
"Custom"
]
},
"customSpeakerId": {
"title": "Custom Speaker ID",
"description": "(Linux) If you want to use a custom speaker, rather than one of the default choices, select 'Custom' for 'Speaker' and put the device ID here. Device IDs can be retrieved on the command line with `aplay -L | egrep '(plug)?hw:CARD='`.",
"type": "string"
},
"microphone": {
"title": "Microphone",
"description": "Microphone to listen on.",
"type": "string",
"enum": [
"Default",
"MATRIX",
"USB",
"Custom"
]
},
"customMicrophoneId": {
"title": "Custom Microphone ID",
"description": "(Linux) If you want to use a custom microphone, rather than one of the default choices, select 'Custom' for 'Microphone' and put the device ID here. Device IDs can be retrieved on the command line with `arecord -L | egrep '(plug)?hw:CARD='`.",
"type": "string"
},
"debug": {
"title": "Enable Debugging",
"description": "Enable additional debug logging",
"type": "boolean"
}
},
"required": [
"token",
"keyword",
"speaker",
"microphone"
]
}
},
"short_name": "Voice",
"version": "2.2.0"
}