-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
54 lines (54 loc) · 1.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
{
"author": "candleSmartHome.com",
"content_scripts": [
{
"css": [
"css/extension.css"
],
"js": [
"js/extension.js"
]
}
],
"description": "Design a floorplan for your home",
"gateway_specific_settings": {
"webthings": {
"exec": "python3 {path}/main.py",
"primary_type": "extension",
"strict_max_version": "*",
"strict_min_version": "0.10.0"
}
},
"homepage_url": "https://github.com/createcandle/floorplanner",
"id": "floorplanner",
"license": "",
"manifest_version": 1,
"name": "Floorplanner",
"options": {
"default": {
"Debugging": false
},
"schema": {
"properties": {
"Debugging": {
"description": "Advanced. Enable this to see much more detail in the internal log about what this add-on is doing.",
"type": "boolean"
}
},
"required": [],
"type": "object"
}
},
"short_name": "Floorplanner",
"version": "0.0.2",
"web_accessible_resources": [
"css/*.css",
"images/*.svg",
"images/*.gif",
"images/*.png",
"images/*.jpg",
"images/*.jpeg",
"js/*.js",
"views/*.html"
]
}