Speech my text

Speech my text

Text to voice converter is a professional Chrome extension that can convert any text into speech. A Text-to-speech voice converter…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Speech my text",
  "version": "1.0",
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_icon": {
      "32": "image/logo32.png",
      "64": "image/logo64.png",
      "128": "image/logo128.png"
    },
    "default_title": "Speech my text"
  },
  "icons": {
    "32": "image/logo32.png",
    "64": "image/logo64.png",
    "128": "image/logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "play.css"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content-script.js",
        "play.css",
        "images/*",
        "image/headLogo.svg",
        "image/anush.svg",
        "image/bodyImage.svg",
        "image/darkModeBtnOff.svg",
        "image/bodyImage1.svg",
        "image/darkModeBtnOn.svg",
        "image/fontLogoWhite.svg",
        "image/voiceLogoWhite.svg",
        "image/fontLogoBlack.svg",
        "image/voiceLogoBlack.svg",
        "image/info-button.svg",
        "image/leftPositionBtn.svg",
        "image/rightPositionBtn.svg",
        "image/copyTxt.svg",
        "image/prevPageBtn.svg",
        "image/playBtn.svg",
        "image/nextPageBtn.svg",
        "image/deleteBtn.svg",
        "image/collapseBtn.svg",
        "image/maxBtn.svg",
        "image/logo.png",
        "image/paused.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}