Chat Filter for YouTube Live

Chat Filter for YouTube Live

Chrome Extension for Filtering Chat Messages on YouTube Live.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "icons": {
    "128": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://www.youtube.com/live_chat*"
      ],
      "all_frames": true,
      "js": [
        "content-script.js"
      ],
      "css": [
        "content-script.css"
      ]
    }
  ],
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://www.youtube.com/*"
  ],
  "name": "Chat Filter for YouTube Live",
  "description": "Chrome Extension for Filtering Chat Messages on YouTube Live.",
  "version": "0.0.12"
}