Turn off Youtube Comments toggle

Turn off Youtube Comments toggle

Turn comments on and off. Works with the new Youtube. A simple clean interface. No weird buttons.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Turn off Youtube Comments toggle",
  "version": "2.0",
  "description": "Turn comments on and off. Works with the new Youtube. A simple clean interface. No weird buttons.",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "code.js"
      ],
      "css": [
        "css.css"
      ],
      "run_at": "document_end",
      "matches": [
        "http://*.youtube.com/*",
        "https://*.youtube.com/*"
      ]
    }
  ]
}