Chrome Flags Reference

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

--disable-checker-imaging

What does --disable-checker-imaging do?

Disabled defering all image decodes to the image decode service, ignoring DecodingMode preferences specified on PaintImage.

Usage

CLILaunch Chrome with --disable-checker-imaging using CLI

chrome --disable-checker-imaging

PuppeteerLaunch Chrome with --disable-checker-imaging using Puppeteer

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

PlaywrightLaunch Chrome with --disable-checker-imaging using Playwright

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

SeleniumLaunch Chrome with --disable-checker-imaging using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-checker-imaging')

driver = webdriver.Chrome(options=options)