NEWS & UPDATES

Chrome & PWA updates 2026: new features every web app builder should know

2026-06-12· 8 min read
Progressive Web Apps keep gaining capabilities that were once native-only. In 2025–2026, Chrome shipped a wave of improvements to install prompts, multi-origin scoping, file handling, and desktop app integration. Here's what changed, what it unlocks, and how it affects apps published to the Play Store with TWA.

1. Richer install prompts — higher install conversion

The BeforeInstallPromptEvent (the browser API that triggers the "Add to Home Screen" prompt) got a visual overhaul. Chrome now shows a bottom sheet with the app's icon, name, description and screenshots — pulled directly from your manifest.json.

This matters because the old prompt was easy to dismiss without reading. The new one looks like a real app install dialog — comparable to the Google Play Store modal. Early data from Google shows conversion to install improved meaningfully with the new UI.

How to maximise the new install prompt

  • Add screenshots to your manifest — Chrome shows them in the install dialog
  • Use a description field in manifest.json — it appears below the app name
  • Set a meaningful short_name (≤12 characters) — used on the home screen icon
  • Use maskable icons (512×512) — ensures correct display on all Android launchers
  • Trigger the prompt at a contextually relevant moment, not immediately on page load

2. Web App Scope Extensions — your SaaS can span multiple origins

One of the most useful new APIs for SaaS products: Web App Scope Extensions. Until recently, a PWA's app scope was limited to its own origin. Navigate to a different subdomain or external URL and Chrome immediately opened the browser — breaking the "installed app" illusion.

With Scope Extensions, you can claim additional origins from your manifest:

// manifest.json
{
  "scope": "https://app.example.com/",
  "scope_extensions": [
    { "origin": "https://docs.example.com" },
    { "origin": "https://checkout.example.com" }
  ]
}

Navigation to those origins now stays inside the installed app. For a multi-product SaaS suite, this means a single app install covers your entire product surface.

Note: each extended origin must serve a valid /.well-known/web-app-origin-association file confirming the association. Same concept as assetlinks.json for TWA.

3. File Handling API — PWA as a real desktop app

The File Handling API is now available in Chrome on all platforms. It lets your installed PWA register as a handler for specific file types in the OS, just like native apps do.

// manifest.json
{
  "file_handlers": [
    {
      "action": "/open-file",
      "accept": {
        "text/csv": [".csv"],
        "application/json": [".json"]
      }
    }
  ]
}

Practical use cases: a SaaS data tool that opens .csv files on double-click, a project manager that handles .md files, an image editor that registers for .png and .jpg. The OS shows your app in the "Open with" menu — exactly like Figma, VS Code, or any native app.

For apps published to app stores via SaasToStore's desktop pipeline (Pake/Tauri), this behaviour can be configured natively in Tauri's tauri.conf.json — even deeper integration than the web API.

4. Protocol Handlers — deep links from other apps

Protocol Handler Registration lets your PWA register a custom URL scheme:

// manifest.json
{
  "protocol_handlers": [
    {
      "protocol": "web+yourapp",
      "url": "/handle?url=%s"
    }
  ]
}

Other apps or documents can then link to web+yourapp://action/id and the OS will route the user directly into your installed PWA — with the right context loaded. Think Slack'sslack:// links or Notion's notion:// deep links, but for any web app.

Combined with the deep linking feature in SaasToStore's PACK and PRO plans, this creates a seamless flow from external references directly into your SaaS product.

5. Push notifications on iOS — Safari finally compliant

Apple shipped Web Push support for installed PWAs in iOS 16.4 (March 2023), and continued improving it through 2024–2025. As of 2026:

  • PWAs added to the home screen on iOS/iPadOS can receive Web Push notifications
  • The W3C Push API and Notifications API are supported — the same code works across all platforms
  • Limitation: the app must be installed (added to home screen) — Safari does not support push for in-browser PWAs
  • Background sync and periodic background sync are still not supported on iOS (Chrome-only for now)

For products that span Android and iOS, this means one push notification codebase now reaches both platforms — provided users install the PWA on iOS. SaasToStore's push credits work with Firebase Cloud Messaging, which handles cross-platform delivery including iOS PWAs.

6. Improved offline capabilities — Storage Access API and OPFS

Two storage improvements ship in Chrome 2025–2026 and matter for offline-capable SaaS apps:

APIWhat it enables
Origin Private File System (OPFS)High-performance sandboxed file storage accessible from service workers. Enables SQLite-style databases, binary file editing, and large local datasets — without hitting IndexedDB limits.
Storage Access APIGrants cross-origin storage access in specific contexts. Useful for SaaS products that embed third-party services but need persistent local state.
Persistent Storage quotaPWAs can now request persistent storage that is not evicted under storage pressure. Previously, browser cache was evicted first — making truly offline-first apps fragile.

7. What TWA apps get automatically — no rebuild needed

This is the architectural advantage of TWA: apps published via a Trusted Web Activity use the device's installed Chrome as their runtime. When Chrome updates on the user's device, your Play Store app inherits all new PWA capabilities automatically.

TWA: automatic vs rebuild required

  • ✓ autoNew PWA APIs your website uses (File Handling, Protocol Handlers, OPFS)
  • ✓ autoSecurity patches in Chrome's rendering engine
  • ✓ autoImproved install prompt UI
  • ↺ rebuildTarget API level changes in the Android shell
  • ↺ rebuildNew Push notification capabilities in the native app shell
  • ↺ rebuildChanges to your app's manifest metadata on Play Store

How to check your PWA is ready for 2026

Run your URL through SaasToStore's free checker — it audits your manifest, service worker, HTTPS setup and Lighthouse score in one pass. If your PWA is ready for TWA packaging, you'll see a green score. If not, the checker explains exactly what to fix.

Free PWA audit — 10 seconds

Manifest · Service worker · HTTPS · Lighthouse score · TWA compatibility — all in one check.

Check my PWA →

Frequently asked questions

What is the biggest PWA improvement in Chrome in 2026?+

The richer install prompt UI and the stabilisation of the Web App Scope Extensions API are the two most impactful changes. The install prompt is now more visually prominent and includes app metadata directly, improving install conversion rates. Scope Extensions lets a single PWA cover multiple related origins — important for SaaS products on subdomains.

Do Chrome PWA updates affect apps already published on Google Play?+

Yes and no. TWA apps use the device's installed Chrome engine, so PWA capability improvements appear automatically in existing Play Store apps when users' Chrome updates. No rebuild needed to get new capabilities if your PWA already uses them.

What is the Web App Scope Extensions API?+

It allows a PWA to extend its scope beyond its origin. For example, a SaaS at app.example.com can claim docs.example.com and checkout.example.com as part of the same app, so navigation to those URLs stays inside the installed app rather than opening a browser tab.

Can a PWA now handle files on the desktop?+

Yes. The File Handling API, shipped in Chrome, lets an installed PWA register as a handler for specific file types (like .csv, .md, .png). When users double-click such a file, the PWA opens it — behaviour that was only possible in native desktop apps before.

Is PWA support now consistent across all browsers?+

Nearly. Chrome, Edge, Samsung Internet, and Opera have the most complete PWA support. Safari improved significantly since iOS 16.4, supporting the Web App Manifest install prompt and push notifications. Firefox still lacks an install mechanism on desktop, but its service worker support is solid.

Does improving my PWA affect my Google Play ranking?+

Indirectly. A stronger PWA (better Lighthouse score, faster load, more offline coverage) enables TWA packaging which Google officially recommends. Faster apps also have lower uninstall rates, which is a known Play Store ranking signal.

Ready to publish your app?

Paste your URL. We build the signed Android App Bundle. You upload to the Play Store.

Deploy now

Keep reading