-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.webapp
executable file
·33 lines (33 loc) · 1.07 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
{
"name":"Camera Sharing",
"description":"Camera sharing for Firefox OS",
"icons": {
"512": "/imgs/icon-512.png",
"128": "/imgs/icon-128.png",
"64": "/imgs/icon-64.png"
},
"launch_path": "/camera.html",
"developer": {
"name": "camera mirror",
"url": "https://openflint.github.io/screen-sharing-sample/camera.html"
},
"default_locale": "en",
"type": "privileged",
"permissions": {
"themeable":{},
"storage":{},
"device-storage:pictures":{ "access": "readwrite" },
"device-storage:videos":{ "access": "readwrite" },
"settings":{ "access": "readonly" },
"camera":{},
"audio-capture": {},
"video-capture": {},
"geolocation":{},
"audio-channel-notification":{},
"audio-channel-content":{},
"feature-detection": {},
"udp-socket": { "description": "Used for ssdp implementation." },
"systemXHR": { "description": "Required to make Ajax Calls over the Network" }
},
"orientation":["portrait-primary"]
}