A test app and debugging tool for the Web Install API, navigator.install(). See more info in the Explainer.
We'd love to hear your feedback! To share feedback, please create a GitHub issue.
*Requires --enable-features=WebAppInstallation (or about://flags/#web-app-installation-api)
Current document installs = installing the current page.
Background document installs = installing anything else that's not the current page.
See this test page*
*Requires --enable-features=InstallElement (or about://flags/#web-app-install-element) OR an origin trial meta header
for InstallElement*
See the Permission Policy test page
Executes:
navigator.install();
Executes:
navigator.install({
manifest: "https://mustjab.github.io/manifest.json",
});
Executes:
navigator.install({
manifest: "https://diek.us/bubble/manifest.json",
manifestId: "https://diek.us/bubble/",
});
*Note - screenshots not yet supported
Executes:
navigator.install({
manifest: "https://squoosh.app/manifest.json",
manifestId: "https://squoosh.app/?utm_medium=PWA&utm_source=launcher",
});
*Note - Although the end result is the same ('foo' site installs itself), passing parameters like this will launch the foo app in a new window, preserving the 'foo' tab in the main browser window.
Executes:
navigator.install({
manifest: "https://kbhlee2121.github.io/pwa/web-install/manifest.webmanifest",
});
Executes:
navigator.install({
manifest: "https://kbhlee2121.github.io/pwa/web-install/manifest.webmanifest",
manifestId: "https://kbhlee2121.github.io/WebInstallSample",
});
Executes:
navigator.install({
manifest: "https://amandabaker.github.io/pwa/web-install/manifest.webmanifest",
});
Executes:
navigator.install({
manifest: "https://mustjab.github.io/manifest.json",
manifestId: "mismatched-manifest-id",
});
Executes:
navigator.install({
manifest: "https://amandabaker.github.io/pwa/web-install/manifest.webmanifest",
manifestId: "mismatched-manifest-id",
});
Executes:
navigator.install({
manifest: undefined,
});
Executes:
navigator.install({
manifest: "badurl",
});
Executes:
navigator.install({
manifest: undefined,
manifestId: "https://diek.us/bubble/",
});
Executes:
navigator.install({
manifest: "https://kbhlee2121.github.io/pwa/web-install/manifest.webmanifest",
manifestId: undefined,
});
navigator.install({
manifest: "https://www.hulu.com/app/manifest.json",
manifestId: "https://www.hulu.com/app/?utm_source=a2hs",
});