-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.webapp
72 lines (72 loc) · 1.86 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "Loqui IM",
"developer": {
"name": "LoquiIM",
"url": "http://loqui.im"
},
"type": "privileged",
"launch_path": "/index.html",
"description": "Loqui Instant Messenger unifies all your chat accounts in just one app.",
"version": "v0.3.1",
"icons": {
"32": "/img/icon-32.png",
"60": "/img/icon-60.png",
"90": "/img/icon-90.png",
"120": "/img/icon-120.png",
"128": "/img/icon-128.png",
"256": "/img/icon-256.png"
},
"default_locale": "en",
"messages": [
{
"alarm": "/index.html"
}
],
"permissions": {
"alarms": {
"description": "Required for keeping the app always connected to server."
},
"desktop-notification": {
"description": "Required for displaying alerts when app is on background."
},
"tcp-socket": {
"description": "CoSeMe requires TCP for connecting to server."
},
"systemXHR": {
"description": "CoSeMe requires XHR for some secondary operations."
},
"contacts": {
"description": "Required for looking for new contacts.",
"access": "readonly"
},
"device-storage:sdcard": {
"description": "Required for file handling",
"access": "readwrite"
},
"device-storage:pictures": {
"description": "Required for image handling",
"access": "readwrite"
},
"device-storage:videos": {
"description": "Required for video handling",
"access": "readwrite"
},
"device-storage:music": {
"description": "Required for audio handling",
"access": "readwrite"
},
"geolocation": {
"description": "Required for sending location messages to other users"
}
},
"activities": {
"share": {
"href": "./index.html",
"disposition": "window",
"filters": {
"type": ["image/*", "video/*", "audio/*"]
},
"returnValue": false
}
}
}