VoiceMagic: Transform Text into Spoken Words

VoiceMagic: Transform Text into Spoken Words

Select text and read it. Hear text read aloud. A Text to Speech Voice Reader.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "VoiceMagic: Transform Text into Spoken Words",
  "version": "1.0.1",
  "description": "Select text and read it. Hear text read aloud. A Text to Speech Voice Reader.",
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "minimum_chrome_version": "99",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "commands": {
    "play": {
      "suggested_key": {
        "default": "Alt+P"
      },
      "description": "play"
    },
    "pause": {
      "suggested_key": {
        "default": "Alt+O"
      },
      "description": "pause"
    },
    "enable": {
      "suggested_key": {
        "default": "Alt+E"
      },
      "description": "enable"
    },
    "disable": {
      "suggested_key": {
        "default": "Alt+D"
      },
      "description": "disable"
    }
  }
}