-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
110 lines (110 loc) · 2.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "The PWinter",
"short_name": "The PWinter",
"start_url": "index.html?randomize=true",
"description": "The PWinter allows the creation of custom colored PWA logos.",
"display": "standalone",
"display_override": ["window-controls-overlay"],
"background_color": "#AFAFAF",
"theme_color": "#3D3D3D",
"orientation": "any",
"icons": [{
"src": "images/pwinter-512.png",
"sizes": "512x512",
"type": "image/png"
}],
"edge_side_panel": {
"preferred_width": 420
},
"shortcuts": [
{
"name": "Create blank logo",
"url": "index.html?blank=true",
"description": "Creates a new PWA logo",
"icons": [{"src": "./images/short-new-logo.png", "sizes": "96x96"}]
},
{
"name": "Create random logo",
"url": "index.html",
"description": "Creates a new PWA logo with random colors",
"icons": [{"src": "./images/short-rand-logo.png", "sizes": "96x96"}]
}
],
"file_handlers": [
{
"action": "index.html?open",
"accept": {
"text/csv": [".csv"]
},
"icons": [
{
"src": "./images/csv-file.png",
"sizes": "144x144"
}
]
}
],
"share_target": {
"action": "index.html?shared-color",
"method": "GET",
"enctype": "application/x-www-form-urlencoded",
"params": {
"title": "title",
"text": "text",
"url": "url"
}
},
"protocol_handlers": [
{
"protocol": "web+pwinter",
"url": "index.html?colors=%s"
}
],
"url_handlers": [
{
"origin": "https://diek.us"
},
{
"origin": "https://diekus.github.io"
},
{
"origin": "https://diekus.com"
},
{
"origin": "https://diekus.net"
},
{
"origin": "https://d13kus.github.io"
}
],
"screenshots" : [
{
"src": "./images/screenshot1.png",
"sizes": "1042x718",
"type": "image/png",
"label": "PWA Logo Printer in light mode.",
"platform": "wide"
},
{
"src": "./images/screenshot2.png",
"sizes": "1042x718",
"type": "image/png",
"label": "PWA Logo Printer in dark mode.",
"platform": "wide"
},
{
"src": "./images/screenshot3.png",
"sizes": "1042x718",
"type": "image/png",
"label": "PWA Logo Printer sharing.",
"platform": "wide"
},
{
"src": "./images/screenshot4.png",
"sizes": "524x1280",
"type": "image/png",
"label": "PWA Logo Printer mobile.",
"platform": "narrow"
}
]
}