Skip to content

Commit 0dbe6cf

Browse files
authored
Merge pull request #1213 from mijorus/develop
Add manifest.json to make the app installable on mobile devices
2 parents 89cc720 + d3bac99 commit 0dbe6cf

File tree

5 files changed

+32
-0
lines changed

5 files changed

+32
-0
lines changed

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
<link rel="canonical" href="https://vdo.ninja/">
3333
<link rel="author" href="/about" />
3434
<link rel="me" href="https://vdo.ninja/about" />
35+
<link rel="manifest" href="/manifest.json">
3536

3637
<!-- Primary Meta Tags -->
3738
<title>VDO.Ninja</title>

manifest.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "VDO.Ninja",
3+
"short_name": "VDO.Ninja",
4+
"description": "Bring live video from your smartphone, computer, or friends directly into your Studio. 100% free.",
5+
"start_url": "/",
6+
"scope": "/",
7+
"display": "standalone",
8+
"background_color": "#fff",
9+
"theme_color": "#1a1a1a",
10+
"orientation": "any",
11+
"icons": [
12+
{
13+
"src": "/media/icon-144x144.png",
14+
"sizes": "144x144",
15+
"type": "image/png",
16+
"purpose": "any monochrome"
17+
},
18+
{
19+
"src": "/media/icon-192x192.png",
20+
"sizes": "192x192",
21+
"type": "image/png",
22+
"purpose": "any monochrome"
23+
},
24+
{
25+
"src": "/media/icon-512x512.png",
26+
"sizes": "512x512",
27+
"type": "image/png",
28+
"purpose": "any monochrome"
29+
}
30+
]
31+
}

media/icon-144x144.png

3.85 KB
Loading

media/icon-192x192.png

5.57 KB
Loading

media/icon-512x512.png

20.3 KB
Loading

0 commit comments

Comments
 (0)