-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (36 loc) · 914 Bytes
/
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
{
"name": "Sorting Algorithm Visualizer",
"short_name": "Sorting",
"description": "Sorting Algorithms visualized step by step.",
"start_url": "./index.html",
"display": "standalone",
"background_color": "#121212",
"theme_color": "#1338BE",
"orientation":"portrait-primary",
"icons": [
{
"src": "./images/sort-128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "./images/sort.png",
"sizes": "512x512",
"type": "image/png"
}
],
"screenshots": [
{
"src": "./images/screenshots/screenshot-wide.png",
"sizes": "1920x1080",
"type": "image/png",
"form_factor": "wide"
},
{
"src": "./images/screenshots/screenshot-wide.png",
"sizes": "1920x1080",
"type": "image/png",
"form_factor": "narrow"
}
]
}