Channel Blocker

Channel Blocker

Block irrelevant channels from the home page of youtube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Channel Blocker",
  "author": "1o1.wtf [https://github.com/thelostcreatives]",
  "description": "Block irrelevant channels from the home page of youtube.",
  "version": "1.1.1",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "/icon.png"
    }
  },
  "permissions": [
    "notifications",
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}