Chrome Flags Reference

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

--glic-dev

What does --glic-dev do?

Dev mode for glic only exposed via command line flag.

Usage

CLILaunch Chrome with --glic-dev using CLI

chrome --glic-dev

PuppeteerLaunch Chrome with --glic-dev using Puppeteer

const browser = await puppeteer.launch({
  args: ['--glic-dev']
});

PlaywrightLaunch Chrome with --glic-dev using Playwright

const browser = await chromium.launch({
  args: ['--glic-dev']
});

SeleniumLaunch Chrome with --glic-dev using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--glic-dev')

driver = webdriver.Chrome(options=options)

Build Conditions

ANDROID!(CHROMEOS)MACWINENABLE_GLIC