Chrome Flags Reference

Chrome command line switches and startup flags for automation, headless mode, and debugging.

--experimental-ai-stable-channel

What does --experimental-ai-stable-channel do?

Allows experimental ai extension APIs to be used in stable channel. This disables chrome sign-in if set, regardless of channel.

Usage

CLILaunch Chrome with --experimental-ai-stable-channel using CLI

chrome --experimental-ai-stable-channel

PuppeteerLaunch Chrome with --experimental-ai-stable-channel using Puppeteer

const browser = await puppeteer.launch({
  args: ['--experimental-ai-stable-channel']
});

PlaywrightLaunch Chrome with --experimental-ai-stable-channel using Playwright

const browser = await chromium.launch({
  args: ['--experimental-ai-stable-channel']
});

SeleniumLaunch Chrome with --experimental-ai-stable-channel using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--experimental-ai-stable-channel')

driver = webdriver.Chrome(options=options)