Chrome Flags Reference

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

--apps-gallery-update-url

What does --apps-gallery-update-url do?

Overrides the update url used by webstore extensions.

Usage

CLILaunch Chrome with --apps-gallery-update-url using CLI

chrome --apps-gallery-update-url

PuppeteerLaunch Chrome with --apps-gallery-update-url using Puppeteer

const browser = await puppeteer.launch({
  args: ['--apps-gallery-update-url']
});

PlaywrightLaunch Chrome with --apps-gallery-update-url using Playwright

const browser = await chromium.launch({
  args: ['--apps-gallery-update-url']
});

SeleniumLaunch Chrome with --apps-gallery-update-url using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--apps-gallery-update-url')

driver = webdriver.Chrome(options=options)