BanTuber

BanTuber

Remove(Hide) channels or users from YouTube that you chose

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon.png",
    "default_title": "enable/disable",
    "name": "enable/disable"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://www.youtube.com/*",
        "http://www.youtube.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Remove(Hide) channels or users from YouTube that you chose",
  "icons": {
    "16": "icons/icon.png",
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "manifest_version": 2,
  "name": "BanTuber",
  "options_page": "option.html",
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "version": "0.9.1"
}