Font Settings

fontSettings
Low RiskCategory: Browser UIView Official Docs

Technical Context

Provides access to the chrome.fontSettings API for reading and modifying Chrome's default font preferences. This affects how text is rendered across all websites.

What This Means For You

The extension can change the default fonts Chrome uses to display websites. This is useful for accessibility or readability preferences.

Related APIs

This permission enables access to these Chrome APIs:

chrome.fontSettings

Common Use Cases

  • Accessibility tools
  • Reading aids

How to Declare in manifest.json

Add the "fontSettings" permission to your extension manifest:

{
  "manifest_version": 3,
  "name": "My Extension",
  "permissions": [
    "fontSettings"
  ]
}

Related Permissions