launch_handler
{{QuickLinksWithSubpages("/en-US/docs/Web/Progressive_web_apps/Manifest/Reference")}}
{{SeeCompatTable}}
The launch_handler
member defines values that control the launch of a web application. Currently it can only contain a single value, client_mode
, which specifies the context in which the app should be loaded when launched. For example, in an existing web app client containing an instance of the app, or in a new web app client. This leaves scope for more launch_handler
values to be defined in the future.
Values
launch_handler
objects may contain the following values:
-
client_mode
{{experimental_inline}}
- : A string, or comma-separated array of strings, which specifies the context in which the app should be loaded when launched. If an array of strings is provided, the first valid value is used.
Possible values are:
auto
- : The user agent decides what context makes sense for the platform to load the app in. For example,
navigate-existing
might make more sense on mobile, where single app instances are commonplace, whereasnavigate-new
might make more sense in a desktop context. This is the default value used if all the provided values are invalid.
- : The user agent decides what context makes sense for the platform to load the app in. For example,
focus-existing
- : If the app is already loaded in a web app client, it is brought into focus but not navigated to the launch target URL. The target URL is made available via
{{domxref("Window.launchQueue")}}
to allow custom launch navigation handling to be implemented. If the app is not already loaded in a web app client,navigate-new
behavior is used instead.
- : If the app is already loaded in a web app client, it is brought into focus but not navigated to the launch target URL. The target URL is made available via
navigate-existing
- : If the app is already loaded in a web app client, it is brought into focus and navigated to the specified launch target URL. The target URL is made available via
{{domxref("Window.launchQueue")}}
to allow additional custom launch navigation handling to be implemented. If the app is not already loaded in a web app client,navigate-new
behavior is used instead.
- : If the app is already loaded in a web app client, it is brought into focus and navigated to the specified launch target URL. The target URL is made available via
navigate-new
- : The app is loaded inside a new web app client. The target URL is made available via
{{domxref("Window.launchQueue")}}
to allow additional custom launch navigation handling to be implemented.
- : The app is loaded inside a new web app client. The target URL is made available via
- : A string, or comma-separated array of strings, which specifies the context in which the app should be loaded when launched. If an array of strings is provided, the first valid value is used.
Possible values are:
Examples
"launch_handler": {
"client_mode": "focus-existing"
}
"launch_handler": {
"client_mode": ["focus-existing", "auto"]
}
Specifications
{{Specifications}}
Browser compatibility
{{Compat}}
See also
- Launch Handler API: Control how your app is launched
{{domxref("Window.launchQueue")}}
- Musicr 2.0 demo app