Chrome Flags Reference

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

--disable-blink-features

What does --disable-blink-features do?

Disable one or more Blink runtime-enabled features. Use names from runtime_enabled_features.json5, separated by commas. Applied after kEnableBlinkFeatures, and after other flags that change these features.

Usage

CLILaunch Chrome with --disable-blink-features using CLI

chrome --disable-blink-features

PuppeteerLaunch Chrome with --disable-blink-features using Puppeteer

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

PlaywrightLaunch Chrome with --disable-blink-features using Playwright

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

SeleniumLaunch Chrome with --disable-blink-features using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-blink-features')

driver = webdriver.Chrome(options=options)