Chrome Flags Reference

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

--reader-mode-heuristics

What does --reader-mode-heuristics do?

No description available for this flag.

Usage

CLILaunch Chrome with --reader-mode-heuristics using CLI

chrome --reader-mode-heuristics

PuppeteerLaunch Chrome with --reader-mode-heuristics using Puppeteer

const browser = await puppeteer.launch({
  args: ['--reader-mode-heuristics']
});

PlaywrightLaunch Chrome with --reader-mode-heuristics using Playwright

const browser = await chromium.launch({
  args: ['--reader-mode-heuristics']
});

SeleniumLaunch Chrome with --reader-mode-heuristics using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--reader-mode-heuristics')

driver = webdriver.Chrome(options=options)