Twitch Chat Overlay

Twitch Chat Overlay

This extension lets you follow any twitch chat from any other page! Just put in the channel name, click on Go and you're good to…

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",
  "version": "0.1.1",
  "icons": {
    "128": "icon-small.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle",
      "css": [
        "twitch-chat-overlay.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon-small.png"
  },
  "permissions": [
    "activeTab",
    "webview"
  ]
}