CI / Build & Test (push) Successful in 2m54s
Add wide (1024x515) and narrow (390x844) screenshots to the web app manifest so Chrome displays the richer install UI with a preview on both desktop and mobile. Register screenshots directory in web_accessible_resources so Chrome can fetch the images from the extension origin.
32 lines
966 B
JSON
32 lines
966 B
JSON
{
|
|
"name": "Holesail Browser",
|
|
"short_name": "Holesail",
|
|
"description": "P2P Holesail tunnels in the browser",
|
|
"start_url": "dashboard.html",
|
|
"display": "standalone",
|
|
"background_color": "#0f1117",
|
|
"theme_color": "#0f1117",
|
|
"screenshots": [
|
|
{
|
|
"src": "screenshots/wide.png",
|
|
"sizes": "1024x515",
|
|
"type": "image/png",
|
|
"form_factor": "wide",
|
|
"label": "Holesail Browser Dashboard"
|
|
},
|
|
{
|
|
"src": "screenshots/narrow.png",
|
|
"sizes": "390x844",
|
|
"type": "image/png",
|
|
"form_factor": "narrow",
|
|
"label": "Holesail Browser Dashboard"
|
|
}
|
|
],
|
|
"icons": [
|
|
{ "src": "../icons/48.png", "sizes": "48x48", "type": "image/png" },
|
|
{ "src": "../icons/128.png", "sizes": "128x128", "type": "image/png" },
|
|
{ "src": "../icons/192.png", "sizes": "192x192", "type": "image/png" },
|
|
{ "src": "../icons/512.png", "sizes": "512x512", "type": "image/png", "purpose": "any maskable" }
|
|
]
|
|
}
|