-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.webapp
47 lines (47 loc) · 1.15 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
{
"version": "0.2.0",
"name": "navi",
"description": "Demonstrates how to use permissions to load remote content",
"launch_path": "/index.html",
"icons": {
"16": "/img/icons/icon16x16.png",
"48": "/img/icons/icon48x48.png",
"60": "/img/icons/icon60x60.png",
"128": "/img/icons/icon128x128.png"
},
"developer": {
"name": "Your name",
"url": "http://example.com"
},
"type": "privileged",
"permissions": {
"geolocation": {
"description" : "Used to locate me"
},
"systemXHR": {
"description": "Required to load remote content"
}
},
"installs_allowed_from": [
"*"
],
"locales": {
"es": {
"name": "Aplicación privilegiada",
"description": "Demuestra cómo utilizar permisos para cargar contenido remoto",
"permissions": {
"geolocation": {
"description": "geolocation API"
},
"device-storage:sdcard": {
"description": "DeviceStorage API",
"access": "readwrite"
},
"systemXHR": {
"description": "Requerido para cargar contenido remoto"
}
}
}
},
"default_locale": "en"
}