-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (34 loc) · 765 Bytes
/
manifest.json
File metadata and controls
34 lines (34 loc) · 765 Bytes
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
{
"manifest_version": 2,
"name": "My Extension",
"short_name": "My Extension",
"version": "versionString",
"default_locale": "en",
"description": "A plain text description",
"icons": [
{
"src": "favicon.png",
"sizes": "16x16",
"type": "image/png"
}, {
"src": "logo.png",
"sizes": "48x48",
"type": "image/png"
}, {
"src": "logo-192.png",
"sizes": "192x192",
"type": "image/png"
}, {
"src": "logo-512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"background": {
"persistent": false
},
"start_url": "https://exampleSite.com/",
"theme_color": "#fff",
"background_color": "#fff",
"display": "standalone"
}