forked from chrismaltby/GameBoy-Online
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
50 lines (50 loc) · 1.04 KB
/
manifest.json
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
{
"background_color": "#ffd700",
"theme_color": "#000000",
"description": "Emulator for the Game Boy Color written in JavaScript.",
"dir": "ltr",
"display": "standalone",
"name": "Game Boy Color Emulator",
"orientation": "any",
"scope": "/GameBoy-Online/",
"short_name": "GBC",
"start_url": "https://edgardozoppi.github.io/GameBoy-Online/",
"categories": [
"entertainment",
"games"
],
"icons": [
{
"src": "images/gbc.png",
"sizes": "512x512 any",
"type": "image/png",
"purpose": "any"
}
],
"lang": "en",
"display_override": [
"standalone",
"minimal-ui",
"window-controls-overlay"
],
"file_handlers": [
{
"action": "/GameBoy-Online/",
"accept": {
"application/octet-stream": [
".gb",
".gbc"
]
},
"icons": [
{
"src": "images/gbc.png",
"sizes": "512x512 any",
"type": "image/png",
"purpose": "any"
}
],
"launch_type": "multiple-clients"
}
]
}