Live Chat Overlay

Live Chat Overlay

Overlay live chat on top of the livestream video on YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extensionName__",
  "version": "2.15.5",
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://github.com/thwonghin/live-chat-overlay",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "icons": {
    "128": "icon.png"
  },
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://www.youtube.com/*"
      ],
      "exclude_globs": [
        "https://www.youtube.com/live_chat*"
      ],
      "all_frames": true,
      "js": [
        "src/content-script.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "run_at": "document_start",
      "matches": [
        "https://www.youtube.com/live_chat*"
      ],
      "all_frames": true,
      "js": [
        "src/live-chat-content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "resources": [
        "src/live-chat-fetch-interceptor.js"
      ]
    }
  ]
}