Chrome Flags Reference

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

--disable-component-update

What does --disable-component-update do?

No description available for this flag.

Usage

CLILaunch Chrome with --disable-component-update using CLI

chrome --disable-component-update

PuppeteerLaunch Chrome with --disable-component-update using Puppeteer

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

PlaywrightLaunch Chrome with --disable-component-update using Playwright

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

SeleniumLaunch Chrome with --disable-component-update using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-component-update')

driver = webdriver.Chrome(options=options)