-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
35 lines (35 loc) · 829 Bytes
/
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
{
"author": "Christopher Boisvert",
"content_scripts": [
{
"css": [
"css/extension.css"
],
"js": [
"js/extension.js"
]
}
],
"description": "Affiche une image et affiche le nom configurer de l'utilisateur.",
"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/mozilla-iot/example-extension",
"id": "voir-ma-photo",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "Objets connectés | Extension voir-ma-photo",
"short_name": "OC-VMP",
"version": "0.0.1",
"web_accessible_resources": [
"css/*.css",
"images/*.svg",
"js/*.js",
"views/*.html"
]
}