no-chat

no-chat

Turn off streaming YouTube Live Chat.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "homepage_url": "http://electricitymachine.com/no-chat/",
  "description": "Turn off streaming YouTube Live Chat.",
  "version": "0.0.0.1",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "*://*/*"
  ],
  "browser_action": {
    "default_icon": "19x19.png",
    "default_popup": "no-chat.html",
    "default_title": "no-chat"
  },
  "name": "no-chat",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.youtube.com/watch?v=*",
        "https://www.youtube.com/watch?v=*"
      ],
      "exclude_matches": [
        "*://*/*results*",
        "*://*/*search_query*"
      ],
      "include_globs": [
        "*youtube.com/watch?v=???????????*"
      ],
      "exclude_globs": [
        "*&list=*",
        "*watch?list=*",
        "*watch?v=*&list=*",
        "*results*",
        "*search_query=*"
      ],
      "css": [
        "no-chat.css"
      ],
      "js": [
        "no-chat.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "no-chat.css"
  ],
  "icons": {
    "16": "16x16.png",
    "19": "19x19.png",
    "32": "32x32.png",
    "38": "38x38.png",
    "48": "48x48.png",
    "128": "128x128.png"
  }
}