Chrome Flags Reference

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

--uninstall-app-id

What does --uninstall-app-id do?

Specifies that the WebApp with the specified id should be uninstalled.

Usage

CLILaunch Chrome with --uninstall-app-id using CLI

chrome --uninstall-app-id

PuppeteerLaunch Chrome with --uninstall-app-id using Puppeteer

const browser = await puppeteer.launch({
  args: ['--uninstall-app-id']
});

PlaywrightLaunch Chrome with --uninstall-app-id using Playwright

const browser = await chromium.launch({
  args: ['--uninstall-app-id']
});

SeleniumLaunch Chrome with --uninstall-app-id using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--uninstall-app-id')

driver = webdriver.Chrome(options=options)

Build Conditions

ANDROID!(CHROMEOS)MACWIN