The short_name manifest member is used to specify a short name for your web application, which may be used when the full name is too long for the available space.
/* Short names of web apps */
"short_name": "TaskPlanner"
"short_name": "RecipePantry"short_nameA string that specifies a short version of your web app's name.
Browsers may use short_name in place of name when there is insufficient space to display the full name, such as on a device's home screen, in the application switcher, or in other space-constrained contexts.
Keep the following points in mind when selecting a short name for your web app:
name.name.Consider a web app that helps users plan and log their hiking adventures. The name has been defined as Trail Navigator. A short_name can be added to the manifest as follows:
{
"name": "Trail Navigator",
"short_name": "TrailNav"
}The app's shorter name TrailNav is concise and is suitable for limited space contexts. It maintains a connection to the app's full name and is easy to remember.
name manifest member