Youtube Comment Filter

Youtube Comment Filter

Comment filter or word censor for Youtube comments. Filter entries are easily customized using literal values with wildcards, or Javascript regular expressions. The word list is also customizable. Either feature can be enabled or disabled.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Youtube Comment Filter",
  "author": "Cawdabra",
  "homepage_url": "https://github.com/Abracawdabra/Youtube-Comment-Filter",
  "description": "Comment filter or word censor for Youtube comments.",
  "version": "1.0",
  "icons": {
    "48": "icon-48.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "*://*.youtube.com/*",
    "storage",
    "tabs",
    "webNavigation"
  ]
}