Hide Youtube™ Comments Plus

Hide Youtube™ Comments Plus

Hides all user comments on Youtube™. There is no option or button to show the comments again

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Hide Youtubeâ„¢ Comments",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "css": [
        "css/youtube.css"
      ],
      "js": [
        "scripts/script.js"
      ],
      "matches": [
        "http://*.youtube.com/*",
        "https://*.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com/ 'unsafe-eval' ; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_description__",
  "homepage_url": "https://chromiumextension.com/",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_name__",
  "permissions": [
    "tabs",
    "*://*/*",
    "storage",
    "cookies"
  ],
  "short_name": "__MSG_short_name__",
  "version": "1.1.0",
  "-ms-preload": {
    "backgroundScript": "backgroundScriptsAPIBridge.js",
    "contentScript": "contentScriptsAPIBridge.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}