forked from mbebenita/j2me.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.webapp
41 lines (41 loc) · 1.03 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
{
"name": "j2me.js",
"description": "j2me interpreter for firefox os",
"launch_path": "/index.html?autosize=1&logConsole=web",
"origin": "app://j2mejs.mozilla.org",
"icons": {
"128": "/img/icon-128.png"
},
"developer": {
"name": "Mozilla",
"url": "http://mozilla.org"
},
"default_locale": "en",
"orientation": ["portrait-primary"],
"permissions": {
"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": {},
"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"
}
},
"type": "privileged"
}