Text to Speech Conversion

Text to Speech Conversion

It's a tool where you can convert text to speech in your browser.

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 Conversion",
  "version": "1.6",
  "description": "It's a tool where you can convert text to speech in your browser.",
  "homepage_url": "https://chrome.google.com/webstore/detail/text-to-speech-conversion/gdonlbjmcnbfdbocbgllendcjiaaleob",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://www.tripointtechnologies.com/text_to_speech/"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/content_script_idle.js"
      ],
      "matches": [
        "https://*.texttospeechconversionext.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "chrome_url_overrides": {
    "newtab": "landing.html"
  },
  "action": {
    "default_icon": {
      "16": "img/bd-16.png",
      "32": "img/bd-32.png",
      "48": "img/bd-48.png",
      "128": "img/bd-128.png"
    }
  },
  "icons": {
    "16": "img/bd-16.png",
    "32": "img/bd-32.png",
    "48": "img/bd-48.png",
    "128": "img/bd-128.png"
  }
}