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