Twitch Chat Overlay

Twitch Chat Overlay

Overlay the Twitch chat when in fullscreen mode.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Twitch Chat Overlay",
  "description": "Overlay the Twitch chat when in fullscreen mode.",
  "version": "1.10",
  "homepage_url": "https://github.com/trmcnvn/twitch-chat-overlay",
  "icons": {
    "16": "resources/icon-16.jpg",
    "48": "resources/icon-48.jpg",
    "96": "resources/icon-96.jpg",
    "128": "resources/icon-128.jpg"
  },
  "web_accessible_resources": [
    "overlay.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "js": [
        "main.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_idle"
    }
  ]
}