This content originally appeared on web.dev and was authored by Thomas Steiner
Tabbed application mode is part of the capabilities project and is currently in development. This post will be updated as the implementation progresses. Tabbed application mode is an early-stage exploration of the Chrome team. It is not ready for production yet.
In the world of computing, the desktop metaphor is an interface metaphor that is a set of unifying concepts used by graphical user interfaces (GUI) to help users interact more easily with the computer. In keeping with the desktop metaphor, GUI tabs are modeled after traditional card tabs inserted in books, paper files, or card indexes. A tabbed document interface (TDI) or tab is a graphical control element that allows multiple documents or panels to be contained within a single window, using tabs as a navigational widget for switching between sets of documents.
Progressive Web Apps can run in various display modes determined by the
display
property in the Web App Manifest. Examples are fullscreen
, standalone
, minimal-ui
,
and browser
. These display modes follow a
well-defined fallback chain
("fullscreen"
→ "standalone"
→ "minimal-ui"
→ "browser"
). If a browser does not support a
given mode, it falls back to the next display mode in the chain.
What is tabbed application mode
Something that has been missing from the platform so far is a way to let PWA developers offer their users a tabbed document interface, for example, to enable editing different files in the same PWA window. Tabbed application mode closes this gap.
This feature is about having a standalone app window with multiple tabs (containing
separate documents inside the app scope) inside it. It is not to be confused with
the existing "display": "browser"
, which has a separate meaning (specifically, that
the app is opened in a regular browser tab).
Suggested use cases for tabbed application mode
Examples of sites that may use tabbed application mode include:
- Productivity apps that let the user edit more than one document (or file) at the same time.
- Communication apps that let the user have conversations in different rooms per tab.
- Reading apps that open article links in new in-app tabs.
Differences to developer-built tabs
Having documents in separate browser tabs comes with resource isolation for free, which is not possible using the web today. Developer-built tabs would not scale acceptably to hundreds of tabs like browser tabs do. Developer-built tabs could also not be dragged out of the window to split into a separate application window, or be dragged back in to combine them back into a single window. Browser affordances such as navigation history, "Copy this page URL", "Cast this tab" or "Open this page in a web browser" would be applied to the developer-built tabbed interface page, but not the currently selected document page.
Differences to "display": "browser"
The current "display": "browser"
already has a
specific meaning:
Opens the web application using the platform-specific convention for opening hyperlinks in the user agent (e.g., in a browser tab or a new window).
While browsers can do whatever they want regarding UI, it would clearly be a pretty big subversion
of developer expectations if "display": "browser"
suddenly meant "run in a separate
application-specific window with no browser affordances, but a tabbed document interface".
Setting "display": "browser"
is effectively the way you opt out of being put into an application
window.
Current status
Step | Status |
---|---|
1. Create explainer | In progress |
2. Create initial draft of specification | Not started |
3. Gather feedback & iterate on design | In progress |
4. Origin trial | Not started |
5. Launch | Not started |
Using tabbed application mode
To use tabbed application mode, developers need to opt their apps in by setting a specific display mode value in the Web App Manifest.
{
…
"display": "tabbed",
…
}
Warning:
The details of the display
property's value (currently "tabbed"
) are not final.
Trying tabbed application mode
You can try tabbed application mode on Chrome OS devices running Chrome 83 and up today:
- Set the
#enable-desktop-pwas-tab-strip
flag. - Install any web app that runs in
standalone
mode, for example, Excalidraw. - Pin the app icon to the shelf, right click the icon, and select "New tabbed window" from the context menu.
- Open the app and interact with the tab strip.
The video below shows the current iteration of the feature in action. There is no need to make any changes to the Web App Manifest for this to work.
Feedback
The Chrome team wants to hear about your experiences with tabbed application mode.
Tell us about the API design
Is there something about tabbed application mode that does not work like you expected? Comment on the Web App Manifest Issue that we have created.
Report a problem with the implementation
Did you find a bug with Chrome's implementation? File a bug at
new.crbug.com. Be sure to include as much detail as you can, simple
instructions for reproducing, and enter UI>Browser>WebAppInstalls
in the Components box.
Glitch works great for sharing quick and easy reproduction cases.
Show support for the API
Are you planning to use tabbed application mode? Your public support helps the Chrome team prioritize features and shows other browser vendors how critical it is to support them.
Send a Tweet to @ChromiumDev with the #TabbedApplicationMode
hashtag and let us
know where and how you are using it.
Useful links
- Web App Manifest spec issue
- Chromium bug
- Blink Component:
UI>Browser>WebAppInstalls
Acknowledgements
Tabbed application mode was explored by Matt Giuca. The experimental implementation in Chrome was the work of Alan Cutter. This article was reviewed by Joe Medley. Hero image by Till Niermann on Wikimedia Commons.
This content originally appeared on web.dev and was authored by Thomas Steiner

Thomas Steiner | Sciencx (2021-02-25T00:00:00+00:00) Tabbed application mode for PWAs. Retrieved from https://www.scien.cx/2021/02/25/tabbed-application-mode-for-pwas/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.