![]() |
How to Install a JSON Manifest Web App on Blogger |
How to Make a Web App Manifest JSON Blogger - With the development of modern web technology, a website or blog can be made like a Native Mobile application that can be installed on Android or iOS devices.
How to Install JSON Manifest in Blogger
In simple terms, the JSON manifest file is a file that contains the existence of json, this is used to tell the browser that a blog or website supports PWA and can be installed on mobile devices.1. Create a JSON Manifest File
The first step is to create a json manifest file, copy the code below and paste it in another notepad/text editor > then Save As with the name manifest.json{ "name": " Title of Blog/ Website ", "short_name": " Blog/ Website Title ", "description": " Blog/ Website Description ", "lang": "id", "dir": "ltrs", "theme_color": " Address Bar Color (Hex) ", "start_url": " Blog/Website URLs ", "background_color": " Background color (Hex) ", "display": "standalone", "orientation": "portrait-primary", "version": "1.0.0", "author": " Author Name ", "icons": [{ "src": " Image URL 36 x 36 (PNG) ", "sizes": "36x36", "type": "image/png", "density": "0.75" }, { "src": " Image URL 48 x 48 (PNG) ", "sizes": "48x48", "type": "image/png", "density": "1.0" }, { "src": " Image URL 72 x 72 (PNG) ", "sizes": "72x72", "type": "image/png", "density": "1.5" }, { "src": " Image URL 96 x 96 (PNG) ", "sizes": "96x96", "type": "image/png", "density": "2.0" }, { "src": " Image URL 144 x 144 (PNG) ", "sizes": "144x144", "type": "image/png", "density": "3.0" }, { "src": " Image URL 192 x 192 (PNG) ", "sizes": "192x192", "type": "image/png", "density": "4.0" }, { "src": " Image URL 512 x 512 (PNG) ", "sizes": "512x512", "type": "image/png", "density": "5.0" }] }
2. Prepare the Logo Image for Manifest JSON
If you don't have time to create logo images of various sizes, you can use online services such as Real Favicon Generator3. Install Manifest JSON in Blogger
Furthermore, if the json manifest file has been created, the next step is to install the json manifest file to the blog, the method is to add a meta link in the blog head section. Here's how:</head>
your blog
closing code<!-- Link Rail Manifest -->
<link rel="manifest" href=" /manifest.json "/>
<!-- Link Rel Manifest -->
<link rel="manifest" href=" https://rawcdn.githack.com/rulnove/pwajson/bafb972614af913d4a515552870803b3f882278e/manifest.json "/>