ChatReplay

ChatReplay

Watch stream archive videos with chat replay.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatReplay",
  "version": "0.4.3",
  "manifest_version": 3,
  "description": "Watch stream archive videos with chat replay.",
  "author": "Restorn",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "js/WindowMessenger.js",
        "js/content.js"
      ],
      "css": [
        "js/content.css"
      ]
    }
  ],
  "background": {
    "service_worker": "bg/background.js"
  },
  "action": {
    "default_popup": "html/popup.html"
  }
}