forked from calculatortamer/pluotsorbet-updated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.webapp.in
70 lines (70 loc) · 1.66 KB
/
manifest.webapp.in
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
{
"name": "@NAME@",
"description": "@DESCRIPTION@",
"launch_path": "/index.html",
"origin": "@ORIGIN@",
"version": "@VERSION@",
"icons": {
"128": "/img/icon-128.png",
"512": "/img/icon-512.png"
},
"developer": {
"name": "Mozilla Apps",
"url": "http://mozilla.org"
},
"default_locale": "en",
"orientation": ["portrait", "landscape"],
"permissions": {
// #if JSR_179 == 1
"geolocation": {
"description": "Required by location API."
},
// #endif
"tcp-socket": {
"description": "Required to connect to internet"
},
"contacts": {
"description": "Required to manage contacts",
"access": "readonly"
},
"mobilenetwork": {
"description": "Required to verify your phone number"
},
"browser": {
"description": "Required to improve performance"
},
"audio-capture": {
"description": "Required to capture audio via getUserMedia"
},
"video-capture": {
"description": "Required to take pictures"
},
"desktop-notification": {
"description": "Required to display notifications"
},
"systemXHR": {
"description": "Required to download MIDlets"
},
"storage": {
"description": "Required to store files without limitations"
},
"alarms": {
"description": "Required to perform tasks while the app isn't running"
}
},
"messages": [
{ "alarm": "/index.html" }
],
// #ifdef CONTENT_HANDLER_FILTER
"activities": {
"share": {
"href": "/index.html",
"disposition": "window",
"filters": {
"type": @CONTENT_HANDLER_FILTER@
}
}
},
// #endif
"type": "privileged"
}