-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
42 lines (42 loc) · 983 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
38
39
40
41
42
{
"name": "Image Editor Online",
"short_name": "Image Editor",
"description": "Powerfully edit images or GIFs online",
"author": "Damian Katsios",
"developer": {
"name": "Damian Katsios",
"url": "https://dkatsios.ml"
},
"version": "1.0",
"manifest_version": 1,
"offline_enabled": false,
"default_locale": "en",
"lang": "English",
"start_url": "/",
"homepage_url": "https://image-editor.dkatsios.ml",
"icons": [
{
"src": "/assets/favicon.ico",
"sizes": "36x36"
},
{
"src": "/assets/apple-touch-icon.png",
"sizes": "180x180",
"type": "image/png"
},
{
"src": "/assets/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/assets/android-chrome-256x256.png",
"sizes": "256x256",
"type": "image/png"
}
],
"theme_color": "#0D6EFD",
"background_color": "#FFFFFF",
"display": "standalone",
"orientation": "portrait"
}