--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-customizerPuppeteerLaunch 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)