-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
71 lines (71 loc) · 2.16 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
{
"author": "CandleSmartHome.com",
"description": "Adds support for Matter devices",
"content_scripts": [
{
"css": [
"css/extension.css"
],
"js": [
"js/extension.js",
"js/qrcode.js"
]
}
],
"gateway_specific_settings": {
"webthings": {
"exec": "python3 {path}/main.py",
"primary_type": "adapter",
"strict_max_version": "*",
"strict_min_version": "1.1.0"
}
},
"homepage_url": "https://github.com/createcandle/matter-adapter",
"id": "matter-adapter",
"license": "",
"manifest_version": 1,
"name": "Matter adapter",
"options": {
"default": {
"Brightness transition duration":0,
"Use Hotspot addon as WiFi network for devices": false,
"Vendor ID":"",
"Debugging": false
},
"schema": {
"properties": {
"Brightness transition duration": {
"description": "If you would like your lights brightness transitions to not be instantaneous you can set a specific speed in seconds here. The default is 0.",
"type": "integer",
"minimum": 0,
"maximum": 10
},
"Use Hotspot addon as WiFi network for devices":{
"type": "boolean",
"description": "Advanced. Under development. The Hotspot addon can generate a separate guest WiFi network for your smart devices. Doing so will give you more insight into the communication habits of your Matter devices, and you can also block connections you don't want or trust."
},
"Vendor ID":{
"type": "string",
"description": "Advanced. You can manually set the Vendor ID of the Matter fabric. If you change this you will have to pair all your devices again."
},
"Debugging": {
"type": "boolean",
"description": "Advanced. Will generate details about the addon's processes in the internal log."
}
},
"required": [],
"type": "object"
}
},
"short_name": "matter",
"version": "0.2.25",
"web_accessible_resources": [
"css/*.css",
"images/*.svg",
"images/*.png",
"images/*.gif",
"images/*.jpg",
"js/*.js",
"views/*.html"
]
}