-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
57 lines (57 loc) · 1.31 KB
/
manifest.json
File metadata and controls
57 lines (57 loc) · 1.31 KB
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
{
"name": "Meow Decoder",
"short_name": "Meow",
"description": "Secure optical air-gap file transfer via animated QR codes",
"start_url": "./wasm_browser_example.html",
"display": "standalone",
"background_color": "#1a1a2e",
"theme_color": "#00ff88",
"orientation": "any",
"categories": ["security", "utilities", "productivity"],
"icons": [
{
"src": "../assets/favicon.svg",
"sizes": "any",
"type": "image/svg+xml",
"purpose": "any"
},
{
"src": "../assets/meow-icon-128.svg",
"sizes": "128x128",
"type": "image/svg+xml",
"purpose": "any maskable"
},
{
"src": "../assets/meow-decoder-logo.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any"
}
],
"screenshots": [
{
"src": "../assets/MeowDecoderDemo.png",
"sizes": "1200x800",
"type": "image/png",
"form_factor": "wide",
"label": "Meow Decoder main interface"
}
],
"share_target": {
"action": "./wasm_browser_example.html",
"method": "POST",
"enctype": "multipart/form-data",
"params": {
"files": [
{
"name": "file",
"accept": ["image/gif", "video/webm", "video/mp4"]
}
]
}
},
"permissions_policy": {
"camera": ["self"],
"microphone": []
}
}