-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
63 lines (63 loc) · 1.86 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
{
"type": "object",
"author": "CandleSmartHome.com",
"description": "Internet radio player. Allows you to search for and store your favourite stations.",
"content_scripts": [
{
"css": [
"css/extension.css"
],
"js": [
"js/extension.js"
]
}
],
"gateway_specific_settings": {
"webthings": {
"exec": "python3 {path}/main.py",
"primary_type": "adapter",
"strict_max_version": "*",
"strict_min_version": "0.10.0"
}
},
"homepage_url": "https://github.com/flatsiedatsie/internet-radio",
"id": "internet-radio",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "Internet radio",
"options": {
"default": {
"Show buttons everywhere": false,
"Do not get song details": false,
"Debugging": false
},
"schema": {
"properties": {
"Show buttons everywhere": {
"type": "boolean",
"description": "If you enable this feature, the volume and play/pause buttons will be shown on all pages, not just on the internet radio page itself."
},
"Do not get song details": {
"type": "boolean",
"description": "Normally the addon will try to request the currently playing song's name and artist data every 20 seconds. If you don't care about this, you can disable it."
},
"Debugging": {
"type": "boolean",
"description": "Advanced. Debugging allows you to diagnose any issues with the add-on. If enabled it will result in a lot more debug data in the internal log (which can be found under settings -> developer -> view internal logs)."
}
},
"required": [],
"type": "object"
}
},
"short_name": "Radio",
"version": "2.2.11",
"web_accessible_resources": [
"css/*.css",
"images/*.svg",
"images/*.png",
"images/*.gif",
"js/*.js",
"views/*.html"
]
}