Chrome Flags Reference

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

--enable-distillability-service

What does --enable-distillability-service do?

No description available for this flag.

Usage

CLILaunch Chrome with --enable-distillability-service using CLI

chrome --enable-distillability-service

PuppeteerLaunch Chrome with --enable-distillability-service using Puppeteer

const browser = await puppeteer.launch({
  args: ['--enable-distillability-service']
});

PlaywrightLaunch Chrome with --enable-distillability-service using Playwright

const browser = await chromium.launch({
  args: ['--enable-distillability-service']
});

SeleniumLaunch Chrome with --enable-distillability-service using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--enable-distillability-service')

driver = webdriver.Chrome(options=options)