Twitch Chat TTS

Twitch Chat TTS

TwitchTTS enable Text-To-Speech in any chat!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitch Chat TTS",
  "version": "1.2",
  "description": "TwitchTTS enable Text-To-Speech in any chat!",
  "permissions": [
    "declarativeContent",
    "storage",
    "http://www.twitch.tv/*",
    "https://www.twitch.tv/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "*.png",
    "*.PNG"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "js": [
        "content-load.js"
      ]
    }
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/TwitchTTS16.png",
      "32": "images/TwitchTTS32.png",
      "48": "images/TwitchTTS48.png",
      "128": "images/TwitchTTS128.png"
    }
  },
  "icons": {
    "16": "images/TwitchTTS16.png",
    "32": "images/TwitchTTS32.png",
    "48": "images/TwitchTTS48.png",
    "128": "images/TwitchTTS128.png"
  },
  "manifest_version": 2
}