Chrome Flags Reference

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

--disable-login-screen-apps

What does --disable-login-screen-apps do?

Disables apps on the login screen. By default, they are allowed and can be installed through policy.

Usage

CLILaunch Chrome with --disable-login-screen-apps using CLI

chrome --disable-login-screen-apps

PuppeteerLaunch Chrome with --disable-login-screen-apps using Puppeteer

const browser = await puppeteer.launch({
  args: ['--disable-login-screen-apps']
});

PlaywrightLaunch Chrome with --disable-login-screen-apps using Playwright

const browser = await chromium.launch({
  args: ['--disable-login-screen-apps']
});

SeleniumLaunch Chrome with --disable-login-screen-apps using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-login-screen-apps')

driver = webdriver.Chrome(options=options)

Build Conditions

ANDROIDCHROMEOS