Chrome Flags Reference

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

--enable-cloud-print-proxy

What does --enable-cloud-print-proxy do?

This applies only when the process type is "service". Enables the Cloud Print Proxy component within the service process.

Usage

CLILaunch Chrome with --enable-cloud-print-proxy using CLI

chrome --enable-cloud-print-proxy

PuppeteerLaunch Chrome with --enable-cloud-print-proxy using Puppeteer

const browser = await puppeteer.launch({
  args: ['--enable-cloud-print-proxy']
});

PlaywrightLaunch Chrome with --enable-cloud-print-proxy using Playwright

const browser = await chromium.launch({
  args: ['--enable-cloud-print-proxy']
});

SeleniumLaunch Chrome with --enable-cloud-print-proxy using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--enable-cloud-print-proxy')

driver = webdriver.Chrome(options=options)