Chrome Flags Reference

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

--offer-in-settings

What does --offer-in-settings do?

No description available for this flag.

Usage

CLILaunch Chrome with --offer-in-settings using CLI

chrome --offer-in-settings

PuppeteerLaunch Chrome with --offer-in-settings using Puppeteer

const browser = await puppeteer.launch({
  args: ['--offer-in-settings']
});

PlaywrightLaunch Chrome with --offer-in-settings using Playwright

const browser = await chromium.launch({
  args: ['--offer-in-settings']
});

SeleniumLaunch Chrome with --offer-in-settings using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--offer-in-settings')

driver = webdriver.Chrome(options=options)