Chrome Flags Reference

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

--none

What does --none do?

No description available for this flag.

Usage

CLILaunch Chrome with --none using CLI

chrome --none

PuppeteerLaunch Chrome with --none using Puppeteer

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

PlaywrightLaunch Chrome with --none using Playwright

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

SeleniumLaunch Chrome with --none using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--none')

driver = webdriver.Chrome(options=options)