Chrome Flags Reference

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

--disable-histogram-customizer

What does --disable-histogram-customizer do?

Disable the RenderThread's HistogramCustomizer.

Usage

CLILaunch Chrome with --disable-histogram-customizer using CLI

chrome --disable-histogram-customizer

PuppeteerLaunch Chrome with --disable-histogram-customizer using Puppeteer

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

PlaywrightLaunch Chrome with --disable-histogram-customizer using Playwright

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

SeleniumLaunch Chrome with --disable-histogram-customizer using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-histogram-customizer')

driver = webdriver.Chrome(options=options)