-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.webapp
executable file
·39 lines (39 loc) · 1.01 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
{
"name": "Context",
"description": "Turning sensors into signals... for humans.",
"launch_path": "/index.html",
"icons": {
"16": "/icons/icon16x16.png",
"48": "/icons/icon48x48.png",
"60": "/icons/icon60x60.png",
"128": "/icons/icon128x128.png"
},
"developer": {
"name": "Dietrich Ayala & Rabimba",
"url": "http://metafluff.com"
},
"type": "certified",
"permissions": {
"audio-capture" : {
"description" : "Audio capture"
},
"bluetooth":{},
"browser": {},
"desktop-notification":{},
"device-storage:music":{ "access": "readonly" },
"device-storage:pictures":{ "access": "readonly" },
"device-storage:sdcard":{ "access": "readwrite" },
"device-storage:videos":{ "access": "readonly" },
"firefox-accounts": {},
"nfc":{},
"permissions":{},
"power":{},
"settings":{ "access": "readwrite" },
"speech-recognition" : {
"description" : "Speech recognition"
},
"systemXHR": {},
"time":{},
"wifi-manage":{}
}
}