YouTube Comments+

YouTube Comments+

Removes comments with a single plus ('+') from YouTube comment threads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YouTube Comments+",
  "version": "0.1.1",
  "version_name": "Alpha 1 (Disabled)",
  "description": "Removes comments with a single plus ('+') from YouTube comment threads.",
  "minimum_chrome_version": "26",
  "permissions": [
    "*://*.youtube.com/*",
    "notifications"
  ],
  "icons": {
    "16": "./images/icons/icon_16.png",
    "32": "./images/icons/icon_32.png",
    "48": "./images/icons/icon_48.png",
    "128": "./images/icons/icon_128.png"
  },
  "browser_action": {
    "default_title": "YT Comments+",
    "default_popup": "layouts/popup.html"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "scripts/lib/ramda.js",
        "scripts/lib/plite.js",
        "scripts/lib/kefir.js",
        "scripts/init.js",
        "scripts/utils.js",
        "scripts/node_watcher.js",
        "scripts/main.js"
      ]
    }
  ]
}