Progressive Web app manifest generator
Create the manifest.json file for your progressive web apps. These are the minimal and most mused options, but there are more things you can do with your PWA.
{
"name": "My Progressive Web App",
"short_name": "MyPWA",
"start_url": "/",
"orientation": "any",
"display": "standalone",
"background_color": "#2196f3",
"theme_color": "#2196f3",
"icons": []
}
About this Tool
Progressive Web Apps (PWAs) are web applications that are regular web pages or websites, but can appear to the user like traditional applications or native mobile applications. This new application type attempts to combine features offered by most modern browsers with the benefits of mobile experience.
One of the key features of PWAs is the manifest file. The manifest file is a simple JSON file that tells the browser about your web application and how it should behave when installed on the user's mobile device or desktop. The manifest file is a simple JSON file that tells the browser about your web application and how it should behave when installed on the user's mobile device or desktop.