Channel Blocker

Channel Blocker

Allows you to block YouTube™ videos and comments by blacklisting users and/or by using regular expressions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Channel Blocker",
  "version": "3.0.0",
  "description": "Allows you to block YouTubeâ„¢ videos and comments by blacklisting users and/or by using regular expressions.",
  "icons": {
    "16": "./images/CB_icon_16.png",
    "32": "./images/CB_icon_32.png",
    "48": "./images/CB_icon_48.png",
    "96": "./images/CB_icon_96.png",
    "128": "./images/CB_icon_128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs"
  ],
  "background": {
    "service_worker": "service-worker/index.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "content-scripts/enums/enums.js",
        "content-scripts/enums/messages.js",
        "content-scripts/helper/index.js",
        "content-scripts/helper/blockBtn.js",
        "content-scripts/storage/index.js",
        "content-scripts/context/index.js",
        "content-scripts/observer/observer.js",
        "content-scripts/observer/videoCreatorObserver.js",
        "content-scripts/observer/index.js",
        "content-scripts/index.js"
      ]
    }
  ],
  "options_page": "./ui/settings/index.html",
  "action": {
    "default_title": "Channel Blocker (Configuration)",
    "default_icon": {
      "16": "./images/CB_icon_16.png",
      "32": "./images/CB_icon_32.png",
      "48": "./images/CB_icon_48.png",
      "96": "./images/CB_icon_96.png",
      "128": "./images/CB_icon_128.png"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}