Text to Speech - Speechit TTS

Text to Speech - Speechit TTS

Add Free Text to Speech - Speechit extension in Chrome and read text out loud from news, articles, websites and many other sources

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Speechit",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.0.1",
  "manifest_version": 3,
  "icons": {
    "16": "assets/logo16.png",
    "48": "assets/logo48.png",
    "128": "assets/logo128.png"
  },
  "action": {
    "default_title": "tts"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "1",
        "enabled": true,
        "path": "actions.json"
      }
    ]
  },
  "permissions": [
    "storage",
    "scripting",
    "tabs",
    "declarativeNetRequest",
    "contextMenus"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "js/content-script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/widget.js",
        "assets/back.svg",
        "assets/backMore.svg",
        "assets/next.svg",
        "assets/nextMore.svg",
        "assets/play.svg",
        "assets/pause.svg",
        "assets/minimize.svg",
        "assets/close.svg",
        "assets/drag.svg",
        "assets/widgetIcon.svg",
        "assets/sound.gif",
        "VictoryAvatar.svg"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [],
      "use_dynamic_url": true
    }
  ]
}