Yet Another YouTube Comment Filter

Yet Another YouTube Comment Filter

Filters comments on YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Yet Another YouTube Comment Filter",
  "version": "0.2.1",
  "description": "Filters comments on YouTube.",
  "author": "Yosuke Mizutani",
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "js/browser-polyfill.min.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "js/browser-polyfill.min.js",
        "js/content.js"
      ],
      "css": [
        "css/yay-filter.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_action": {
    "default_title": "Yay Filter",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/yayFilterIcon16.png",
    "32": "icons/yayFilterIcon32.png",
    "48": "icons/yayFilterIcon48.png",
    "96": "icons/yayFilterIcon96.png",
    "128": "icons/yayFilterIcon128.png"
  },
  "homepage_url": "https://github.com/mogproject/yay-filter",
  "default_locale": "en"
}