Text to Speech

Text to Speech

Text to Speech Hewizo removes ads and reads articles in over 30+ languages using state of the art AI text to speech engine TTS

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Text to Speech",
  "short_name": "Text to Speech",
  "description": "Text to Speech Hewizo removes ads and reads articles in over 30+ languages using state of the art AI text to speech engine TTS",
  "version": "2.1.0",
  "homepage_url": "https://hewizo.com",
  "icons": {
    "16": "assets/hewizo-16x16.png",
    "32": "assets/hewizo-32x32.png",
    "48": "assets/hewizo-48x48.png",
    "60": "assets/hewizo-60x60.png",
    "72": "assets/hewizo-72x72.png",
    "96": "assets/hewizo-96x96.png",
    "120": "assets/hewizo-120x120.png",
    "152": "assets/hewizo-152x152.png",
    "180": "assets/hewizo-180x180.png",
    "192": "assets/hewizo-192x192.png",
    "310": "assets/hewizo-310x310.png",
    "512": "assets/hewizo-512x512.png"
  },
  "action": {},
  "permissions": [
    "activeTab",
    "scripting",
    "contextMenus",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/parse-latin.js",
        "scripts/traverse.js",
        "scripts/mark.js"
      ],
      "css": [
        "styles/top-bar.css"
      ]
    }
  ]
}