Basic TTS

Basic TTS

This extension allows you to interact with the Chrome Text-to-Speech API.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Basic TTS",
  "description": "This extension allows you to interact with the Chrome Text-to-Speech API.",
  "version": "1.0.1",
  "icons": {
    "16": "/assets/icon16.png",
    "48": "/assets/icon48.png",
    "128": "/assets/icon128.png"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "tts"
  ],
  "options_page": "/options/options.html",
  "background": {
    "scripts": [
      "/background/background.js"
    ]
  }
}