Chrome Flags Reference

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

--reader-mode-feedback

What does --reader-mode-feedback do?

No description available for this flag.

Usage

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

chrome --reader-mode-feedback

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

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

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

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

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

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)