Text to Speech

tts
Low RiskCategory: Device AccessView Official Docs

Technical Context

Provides access to the chrome.tts API for converting text to spoken audio using the system's text-to-speech engine. This enables screen reader functionality and audio content.

What This Means For You

The extension can make your computer read text aloud using the built-in voice. This is useful for accessibility or listening to articles.

Related APIs

This permission enables access to these Chrome APIs:

chrome.tts

Common Use Cases

  • Screen readers
  • Article readers
  • Language learning

How to Declare in manifest.json

Add the "tts" permission to your extension manifest:

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

Related Permissions