-
Notifications
You must be signed in to change notification settings - Fork 15
/
manifest.webapp
48 lines (48 loc) · 1.27 KB
/
manifest.webapp
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
{
"name": "Weather",
"description": "Simple and powerful weather app",
"launch_path": "/index.html",
"version": "3.0",
"icons": {
"128": "/images/icon.png"
},
"developer": {
"name": "Evgeny Nikiforov",
"email": "[email protected]"
},
"default_locale": "en",
"permissions": {
"geolocation": {
"description": "Required for choosing your location"
}
},
"locales": {
"eo": {
"name": "Klimato",
"description": "Simpla kaj efika aplikaĵo por la klimato.",
"permissions": {
"geolocation": {
"description": "Necesata por difini vian lokalizon"
}
}
},
"it": {
"name": "Meteo",
"description": "App semplice e potente per il meteo.",
"permissions": {
"geolocation": {
"description": "Necessario per determinare la tua localizzazione"
}
}
},
"eo": {
"name": "Погода",
"description": "Простое и функциональное приложение прогноза погоды",
"permissions": {
"geolocation": {
"description": "Требуется, чтобы находить ваше месторасположение для показа погоды"
}
}
}
}
}