--credits
What does --credits do?
Prints licensing information (same content as found in about:credits) and quits.
Usage
CLILaunch Chrome with --credits using CLI
chrome --creditsPuppeteerLaunch Chrome with --credits using Puppeteer
const browser = await puppeteer.launch({
args: ['--credits']
});PlaywrightLaunch Chrome with --credits using Playwright
const browser = await chromium.launch({
args: ['--credits']
});SeleniumLaunch Chrome with --credits using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--credits')
driver = webdriver.Chrome(options=options)