-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
54 lines (54 loc) · 1.31 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": "Michael Kohler",
"description": "Adapter for the WebThings Gateway to show and control Netatmo Thermostats",
"gateway_specific_settings": {
"webthings": {
"exec": "{nodeLoader} {path}",
"primary_type": "adapter",
"strict_max_version": "*",
"strict_min_version": "1.0.0"
}
},
"homepage_url": "https://github.com/MichaelKohler/netatmo-energy-adapter",
"id": "netatmo-energy-adapter",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "Netatmo Energy",
"short_name": "Netatmo ⚡",
"version": "3.0.3",
"options": {
"schema": {
"type": "object",
"title": "Your Netatmo Smart Home app (dev.netatmo.com)",
"properties": {
"client_id": {
"type": "string",
"title": "Netatmo API Client ID"
},
"client_secret": {
"type": "string",
"title": "Netatmo API Client Secret"
},
"baseUrl": {
"type": "string",
"title": "Base URL of your gateway, for example http://192.168.0.2:8080"
}
}
}
},
"content_scripts": [
{
"css": [
"src/views/styles.css"
],
"js": [
"src/extension.js"
]
}
],
"web_accessible_resources": [
"src/extension.js",
"src/views/*.css",
"src/views/*.html"
]
}