docs/webapps/concepts.md
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-extensionThis 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:
namestart_urlicons 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 off
Notes:
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.htmlThe 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.
See this document for more information.