Chrome Flags Reference

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

--disable-ipc-flooding-protection

What does --disable-ipc-flooding-protection do?

Disables the IPC flooding protection. It is activated by default. Some javascript functions can be used to flood the browser process with IPC. This protection limits the rate at which they can be used.

Usage

CLILaunch Chrome with --disable-ipc-flooding-protection using CLI

chrome --disable-ipc-flooding-protection

PuppeteerLaunch Chrome with --disable-ipc-flooding-protection using Puppeteer

const browser = await puppeteer.launch({
  args: ['--disable-ipc-flooding-protection']
});

PlaywrightLaunch Chrome with --disable-ipc-flooding-protection using Playwright

const browser = await chromium.launch({
  args: ['--disable-ipc-flooding-protection']
});

SeleniumLaunch Chrome with --disable-ipc-flooding-protection using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-ipc-flooding-protection')

driver = webdriver.Chrome(options=options)