YouTube Comment Filter

YouTube Comment Filter

Allows you to filter out Youtube spam.

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 Comment Filter",
  "description": "Allows you to filter out Youtube spam.",
  "version": "1.1.3",
  "icons": {
    "48": "FilTube48.png",
    "128": "FilTube128.png"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://apis.google.com/*",
        "https://www.youtube.com/*"
      ],
      "js": [
        "jquery.min.js",
        "editor.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}