--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-urlPuppeteerLaunch 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)