Channel Block List for Youtube

Channel Block List for Youtube

Block distracting Youtube Channels

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Channel Block List for Youtube",
  "description": "Block distracting Youtube Channels",
  "version": "2.1.8",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "index.html",
  "icons": {
    "128": "new_128x128_logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "index.html"
  }
}