Chrome Flags Reference

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

--apps-gallery-download-url

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

Overrides the URL that the webstore APIs download extensions from. Note: the URL must contain one '%s' for the extension ID.

Usage

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

chrome --apps-gallery-download-url

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

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

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

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

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

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)