-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.webapp
35 lines (35 loc) · 911 Bytes
/
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
{
"version": "0.3",
"name": "flamebot",
"description": "flamebot robot controller",
"launch_path": "/index.html",
"icons": {
"16": "/app-icons/icon-16.png",
"48": "/app-icons/icon-48.png",
"128": "/app-icons/icon-128.png"
},
"developer": {
"name": "Brad Midgley",
"url": "http://flamebot.com"
},
"default_locale": "en",
"permissions" : {
"geolocation": {
"description": "Required to have location-based goals"
},
"systemXHR" : {
"description": "Required to communicate with robot or car"
},
"camera" : {
"description": "Required to take pictures during missions"
},
"device-storage:pictures" : {
"access": "readwrite",
"description": "Required to store pictures taken during missions"
},
"tcp-socket" : {
"description": "Required to send commands to robot or car"
}
},
"type": "certified"
}