Wized to PWA (WizedDev)
<link rel="manifest" wized="manifestURL">


Last updated
Was this helpful?
<link rel="manifest" wized="manifestURL">


Last updated
Was this helpful?
Was this helpful?
// Please customize your Manifest - based on your apps details ;-)
const manifestJson = {
"short_name": "Tabs IO",
"name": "Tabs IO",
"start_url": "/",
"display": "standalone",
"background_color": "#FFFFFF",
"theme_color": "#000000",
"icons": [
{
"src": "https://embed.attribula.com/vault/xksahjyk/vZBgRmgWjYo0wGn9hOfmyLb_Hdg/xj5KgQ../%5BW.png",
"type": "image/png",
"sizes": "512x512"
}
]
};
//Keep this part as it is ;-)
// Convert the JavaScript object to a JSON string
const jsonString = JSON.stringify(manifestJson);
// Create a Blob from the JSON string
const blob = new Blob([jsonString], {type: "application/json"});
// Generate a Blob URL from the Blob
const manifestUrl = URL.createObjectURL(blob);
return manifestUrl