Chrome Flags Reference

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

--profile-management-attributes

What does --profile-management-attributes do?

Domains and associated SAML attributes for which third-party profile management should be enabled. Input should be in JSON format.

Usage

CLILaunch Chrome with --profile-management-attributes using CLI

chrome --profile-management-attributes

PuppeteerLaunch Chrome with --profile-management-attributes using Puppeteer

const browser = await puppeteer.launch({
  args: ['--profile-management-attributes']
});

PlaywrightLaunch Chrome with --profile-management-attributes using Playwright

const browser = await chromium.launch({
  args: ['--profile-management-attributes']
});

SeleniumLaunch Chrome with --profile-management-attributes using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--profile-management-attributes')

driver = webdriver.Chrome(options=options)

Build Conditions

ANDROID!(CHROMEOS)MACWINLINUX || IS_MAC || BUILDFLAG(IS_WIN)