Progressive Web Apps - Web App Manifest

The web app manifest is a simple JSON file that gives you the ability to control how your app appears to users in areas where they would normally see apps in mobile devices.

Progressive Web Apps 

Web app manifests are part of a collection of web technologies called progressive web apps, which are websites that can be installed to a device’s home screen without an app store, along with other capabilities like working offline and receiving push notifications, and, more importantly, how it behaves when it’s launched from the home screen.

Installs to the home screen

When a user clicks “Add to home screen”, they will see the app being added on the home screen.

Progressive Web Apps Progressive Web AppsProgressive Web Apps

At a minimum, the manifest must contain the name of the app and a short_name.

The short_name is used on the home screen and in other places where there is limited space.

It also needs the start_url, the URL the app should open when launched from the home screen.

Defining the manifest metadata

  1. {  
  2.     "short_name""Pandiyan",  
  3.     "name""Pandiyan Murugan",  
  4.     "icons": [{  
  5.         "src""/img/portrait_small.jpg",  
  6.         "type""image/jpg",  
  7.         "sizes""192x192"  
  8.     }, {  
  9.         "src""/img/portrait.jpg",  
  10.         "type""image/jpg",  
  11.         "sizes""512x512"  
  12.     }],  
  13.     "start_url""/?source=pwa",  
  14.     "background_color""#3367D6",  
  15.     "display""standalone",  
  16.     "scope""/",  
  17.     "theme_color""#3367D6"  

Make sure the page you specify is cached as part of the app shell. Otherwise, you won’t get the benefits of a cached app shell and your app won’t work offline.

One quick tip

To track the number of users who are launching your app from their home screen, you can add a query string to the end of your URL.

And use any analytics to track launches, with that query string.

But don’t forget to ensure that you’ve cached the URL with the query string, in your service worker.

Adding icons and Splash screen color

Finally, we need to provide a set of icons for things like the home screen icon and the tab switcher, and the splash screen.

The icons parameter takes an array of icons and must include the source, the size of the icon, and the type.

For example, image/jpg.

I recommend providing eight icon sizes,

48 x 48, 96 bx 96, 128 bx 128, 144 x 144,
192 x 192, 256 x 256, 384 x 384 and 512 x 512.

Just make sure you have icons for 1x, 2x, 3x and 4x devices.

Chrome uses the 48 device independent pixel icons for the home screen icon and the tabs footer, and the 128 device pixel icons for the splash screen.

Those are the minimum requirements. But there are a few other helpful things that you should set in the manifest.

The background color and theme color are used by the browser along with an icon, as part of the splash screen.

The instant the web app is launched, until its first render, as we provide the splash screen color as blue in the manifest. The splash screen, icon, and short name are displayed while the browser is rendering the application. 

Progressive Web AppsProgressive Web Apps

Once the app is loaded, the theme color tells the browser what color to display in the UI elements such as the address bar or the notification tray.

Display and orientation property give you control over how the app is displayed. For example, you can hide the address bar and the back and forward buttons, by setting “display”: “standalone”. Or if you’re building a game that works better in a landscape, you can force landscape view by specifying, “orientation”: “landscape”.

Web apps will launch full-screen with no vestiges of a browser. The URL will not be present, nor will traditional browser actions such as bookmarking and navigation controls.

Linking the manifest

When you have created the manifest add a link tag to all the pages that encompass your web app:

  1. <link rel="manifest" href="/manifest.json"

Manifest metadata in the browser

To confirm whether the manifest is properly, we can use the Chrome DevTools to view the manifest as below.

(Switch to Application tab in the Chrome Dev Tools)

 Progressive Web Apps
Happy Coding!