Chrome Flags Reference

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

--enable-new-app-menu-icon

What does --enable-new-app-menu-icon do?

No description available for this flag.

Usage

CLILaunch Chrome with --enable-new-app-menu-icon using CLI

chrome --enable-new-app-menu-icon

PuppeteerLaunch Chrome with --enable-new-app-menu-icon using Puppeteer

const browser = await puppeteer.launch({
  args: ['--enable-new-app-menu-icon']
});

PlaywrightLaunch Chrome with --enable-new-app-menu-icon using Playwright

const browser = await chromium.launch({
  args: ['--enable-new-app-menu-icon']
});

SeleniumLaunch Chrome with --enable-new-app-menu-icon using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--enable-new-app-menu-icon')

driver = webdriver.Chrome(options=options)

Build Conditions

ANDROID!(CHROMEOS)MACWINLINUX || IS_CHROMEOS || BUILDFLAG(IS_MAC) || \