This refers to the document described by the appmanifest spec, with some extra features described by manifest-incubations. This document describes metadata and developer configuration of an installable web app.
For code representations of the manifest see the list.
A manifest link is something that looks like this in a html document:
<link rel="manifest" href="manifest.webmanifest">
This link ties the manifest to the document, and subsequently used in the spec algorithms defined in appmanifest or manifest-incubations to describe the webapp and determine if it is installable.
If a document or page is considered “installable”, then the user agent can create some form of installed web app for that page. To be installable, web_app::CanCreateWebApp must return true, where:
http, https
, or chrome-extension
This is different from promotable below, which determines if Chrome will promote installation of the page.
A document is considered “promotable” if it fulfills a set of criteria. This criteria may change to further encourage a better user experience for installable web apps. There are also a few optional checks that depend on the promotability checker. This general criteria as of 2022/09/08:
name
start_url
icons
with at least one icon with a valid response that is a parsable image.display
field that is not "browser
"start_url
is ‘controlled’ (can be served by) a serviceworker with a fetch handler. Optionally turned offNotes:
start_url
origin must match.start_url
origin does not have to match the manifest_url
originstart_url
could be different from the document_url
.The id
specified in the manifest represents the identity of the web app. The manifest id is processed following the algorithm described in appmanifest specification to produce the app‘s identity. In the web app system, the app’s identifier is hashed to be stored to WebApp->app_id().
If a manifest is discovered during any sort of page load, then the update process is initiated for that manifest. If it resolves to an app_id
that is installed, then it will perform an update. See documentation for more information.
Scope refers to the prefix that a WebApp controls. All paths at or nested inside of a WebApp's scope are thought of as “controlled” or “in-scope” of that WebApp. This is a simple string prefix match. For example, if scope
is /my-app
, then the following will be “in-scope”:
/my-app/index.html
/my-app/sub/dir/hello.html
/my-app-still-prefixed/index.html
(Note: if the scope was /
, then this would not be out-of-scope)And the following will be “out-of-scope”:
/my-other-app/index.html
/index.html
The display
of a web app determines how the developer would like the app to look like to the user. See the spec for how the display
member is processed in the manifest and what the display modes mean.
In addition to the developer-specified display
, the user can specify how they want a WebApp to be displayed, with the only option being whether to “open in a window” or not. Internally, this is expressed in the same display mode enumeration type as display
, but only the kStandalone
and kBrowser
values are used to specify “open in a window” and “do not open in a window”, respectively.
The pseudocode to determine the ACTUAL display mode a WebApp is displayed is:
if (user_display_mode == kStandalone) return developer_specified_display_mode; else return kBrowser; // Open in a tab.
This refers to the user specifying that a WebApp should open in the developer specified display mode.
This refers to the user specifying that a WebApp should NOT open in a window, and thus the WebApp, if launched, will just be opened in a browser tab.
Each app has one or more ‘management source’, specified by the WebAppManagement
enumeration. This signifies the system that is ‘managing’ the install, AKA responsible for installing or uninstalling the app. Internally, the web app system will ensure that the app will only be uninstalled if there are no sources left in the app.
When a user installs an app, the kSync
management source is specified, because user installs are considered ‘managed’ by the sync system (and installs will by synced to all devices). See the WebAppManagement
enumeration for the description of other management sources.
Installation by certain sources can cause the app to no longer be “uninstallable” by the user. The method CanUserUninstallWebApp
function determines if this is the case.
There are some webapps which are managed by external sources - for example, the enterprise policy force-install apps, or the system web apps for ChromeOS. These are generally not installed by user interaction, and the WebAppProvider needs to install something for each of these apps.
Sometimes, the installation of these apps can fail because the install url is not reachable (usually a cert or login needs to occur, and the url is redirected). When this happens, the system can install a “placeholder” app, which is a fake application that, when launched, navigates to the install url of the application, given by the external app manager.
To resolve placeholder apps back into the intended installation, web contents (either in-(placeholder)-app or in the browser) are all listened to. If any web content successfully navigates to a placeholder app's install_url
, then:
When signing into a non-ChromeOS device, all web apps are installed but not locally installed. This means that OS integration is not triggered (so there are no platform shortcuts created), install icons will still show up for the app websites, and the app icon will appear grayed out on chrome://apps.
For an app to become locally installed, the user must do one of the following:
chrome://apps
, find the grayed-out icon of the app, right click on it, and select “Install”.This was done because on non-ChromeOS devices it was considered a bad user experience to fully install all of the profile's web apps (creating platform shortcuts, etc), as this might not be expected by the user.
See this document for more information.