YouTube Comment Language Filter

YouTube Comment Language Filter

Filter comments in language you want

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "name": "__MSG_ext_name__",
  "short_name": "__MSG_ext_shortname__",
  "description": "__MSG_ext_description__",
  "version": "1.1.3",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://*.youtube.com/*",
        "https://*.youtube.com/*"
      ],
      "all_frames": true,
      "js": [
        "js/langs.js",
        "js/bg.js",
        "js/config.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "css/style.css"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage"
  ]
}