Readvox - Natural voice text to speech AI

Readvox - Natural voice text to speech AI

Text to speech reader for the web with Natural voices.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "2.3.3",
  "manifest_version": 3,
  "homepage_url": "https://readvox.com",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon-readvox-16.png",
    "32": "icons/icon-readvox-32.png",
    "48": "icons/icon-readvox-48.png",
    "96": "icons/icon-readvox-96.png",
    "128": "icons/icon-readvox-128.png",
    "192": "icons/icon-readvox-192.png",
    "512": "icons/icon-readvox-512.png"
  },
  "action": {
    "default_title": "Start Readvox"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://*.youtube.com/*",
        "*://*.youtu.be/*",
        "*://*.figma.com/*"
      ],
      "js": [
        "src/inject/main.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/fonts/*",
        "/icons/*",
        "/images/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "src/service-workers/index.js",
    "type": "module"
  }
}