Glossary

Definition

Standalone display mode

Short definition

Standalone is a value of the display field in a Web App Manifest. It tells the browser to launch the PWA in its own window with no address bar or tabs, so it looks and behaves like a native app. It is the most common display mode for installable PWAs.

Reviewed July 8, 2026

Standalone keeps navigation, history and cookies scoped to the app, so the user cannot accidentally navigate away or lose session.

Detect standalone at runtime with window.matchMedia('(display-mode: standalone)').matches — useful for hiding "Install" UI once installed.

The alternative values are browser (normal tab), minimal-ui (Chromium desktop only) and fullscreen (games). Most PWAs use standalone.