--extension-content-verification
What does --extension-content-verification do?
Name of the command line flag to force content verification to be on in one of various modes.
Usage
CLILaunch Chrome with --extension-content-verification using CLI
chrome --extension-content-verificationPuppeteerLaunch Chrome with --extension-content-verification using Puppeteer
const browser = await puppeteer.launch({
args: ['--extension-content-verification']
});PlaywrightLaunch Chrome with --extension-content-verification using Playwright
const browser = await chromium.launch({
args: ['--extension-content-verification']
});SeleniumLaunch Chrome with --extension-content-verification using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--extension-content-verification')
driver = webdriver.Chrome(options=options)