ReadX Text To Speech

ReadX Text To Speech

Text to speech Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "ReadX Text To Speech",
  "version": "1.1.4",
  "action": {
    "default_popup": "popup.html"
  },
  "description": "Text to speech Extension",
  "permissions": [
    "activeTab",
    "storage",
    "background",
    "webNavigation",
    "tabs",
    "ttsEngine",
    "tts"
  ],
  "tts_engine": {
    "voices": [
      {
        "voice_name": "Alice",
        "lang": "en-US",
        "event_types": [
          "start",
          "marker",
          "end"
        ]
      },
      {
        "voice_name": "Pat",
        "lang": "en-US",
        "event_types": [
          "end"
        ]
      }
    ]
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "commands": {
    "activateextension": {
      "suggested_key": {
        "default": "Ctrl+R"
      },
      "description": "Activate the extension"
    }
  },
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}