--disable-speech-synthesis-api
What does --disable-speech-synthesis-api do?
Disables the speech synthesis part of Web Speech API.
Usage
CLILaunch Chrome with --disable-speech-synthesis-api using CLI
chrome --disable-speech-synthesis-apiPuppeteerLaunch Chrome with --disable-speech-synthesis-api using Puppeteer
const browser = await puppeteer.launch({
args: ['--disable-speech-synthesis-api']
});PlaywrightLaunch Chrome with --disable-speech-synthesis-api using Playwright
const browser = await chromium.launch({
args: ['--disable-speech-synthesis-api']
});SeleniumLaunch Chrome with --disable-speech-synthesis-api using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--disable-speech-synthesis-api')
driver = webdriver.Chrome(options=options)