YouTube Live Chat Enhancement

YouTube Live Chat Enhancement

Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "YouTube Live Chat Enhancement by Codezen"
  },
  "description": "Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "commands": {
    "highlight-latest-chat": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Highlight Latest Chat"
    }
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "chat.js"
      ],
      "css": [
        "chat.css"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ],
  "manifest_version": 2,
  "name": "YouTube Live Chat Enhancement",
  "options_page": "options.html",
  "version": "1.43"
}