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