Skip to content

Google Chrome iOS

Google Chrome is a web browser developed by Google. Protocol Launcher allows you to generate deep links to open HTTP and HTTPS URLs in Chrome for iOS.

Usage

There are two ways to use this library:

  • On-Demand import from subpaths enables tree-shaking and keeps bundles small.
  • Full Import from the root package is convenient but includes all app modules.

Pick On-Demand for production builds; Full Import is fine for quick scripts or demos.

Select Installation Method

On-Demand
Recommended. Optimized for production.
Full Import
Convenient. Good for quick scripts.

Notes

This module follows Chrome for iOS's official URL scheme documentation: replace the URL scheme before the first :, so http becomes googlechrome and https becomes googlechromes.

Open URL

On-Demand
ts
import { openUrl } from 'protocol-launcher/google-chrome-ios'

const url = openUrl({
  url: 'https://www.google.com/',
})