Text to Speech (TTS)

Text to Speech (TTS)

A text to speech tool with natural sounding voices.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.2.7",
  "manifest_version": 3,
  "offline_enabled": true,
  "name": "Text to Speech (TTS)",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "homepage_url": "https://mybrowseraddon.com/text-to-speech.html",
  "description": "A text to speech tool with natural sounding voices.",
  "commands": {
    "_execute_action": {}
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "data/options/options.html"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "data/content_script/icons/*.png",
        "data/content_script/icons/loading.gif"
      ]
    }
  ],
  "action": {
    "default_title": "Text to Speech",
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    }
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start",
      "css": [
        "data/content_script/inject.css"
      ],
      "js": [
        "data/content_script/resources/getboundingbox.js",
        "data/content_script/inject.js",
        "data/interface/resources/audio.js",
        "data/interface/resources/tts.js",
        "data/interface/resources/language.js"
      ]
    }
  ],
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  }
}