Chrome Flags Reference

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

--ui-enable-rgba-4444-textures

What does --ui-enable-rgba-4444-textures do?

No description available for this flag.

Usage

CLILaunch Chrome with --ui-enable-rgba-4444-textures using CLI

chrome --ui-enable-rgba-4444-textures

PuppeteerLaunch Chrome with --ui-enable-rgba-4444-textures using Puppeteer

const browser = await puppeteer.launch({
  args: ['--ui-enable-rgba-4444-textures']
});

PlaywrightLaunch Chrome with --ui-enable-rgba-4444-textures using Playwright

const browser = await chromium.launch({
  args: ['--ui-enable-rgba-4444-textures']
});

SeleniumLaunch Chrome with --ui-enable-rgba-4444-textures using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--ui-enable-rgba-4444-textures')

driver = webdriver.Chrome(options=options)