Chrome Flags Reference

Chrome command line switches and startup flags for automation, headless mode, and debugging.

--disable-remote-fonts

What does --disable-remote-fonts do?

Disables remote web font support. SVG font should always work whether this option is specified or not.

Usage

CLILaunch Chrome with --disable-remote-fonts using CLI

chrome --disable-remote-fonts

PuppeteerLaunch Chrome with --disable-remote-fonts using Puppeteer

const browser = await puppeteer.launch({
  args: ['--disable-remote-fonts']
});

PlaywrightLaunch Chrome with --disable-remote-fonts using Playwright

const browser = await chromium.launch({
  args: ['--disable-remote-fonts']
});

SeleniumLaunch Chrome with --disable-remote-fonts using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-remote-fonts')

driver = webdriver.Chrome(options=options)