YTBlock - Block any content from YouTube™

YTBlock - Block any content from YouTube™

Block videos, comments, channels and much more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_ExtFullName__",
  "description": "__MSG_ExtDescription__",
  "version": "5.0.3",
  "short_name": "YTBlock",
  "icons": {
    "16": "icon/16.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "author": "Edoan",
  "permissions": [
    "storage",
    "contextMenus",
    "unlimitedStorage",
    "alarms",
    "notifications"
  ],
  "optional_permissions": [
    "downloads"
  ],
  "default_locale": "en",
  "host_permissions": [
    "*://*.youtube.com/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "resources": [
        "icon/128.png",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Popup",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "content-scripts/content.css"
      ],
      "js": [
        "content-scripts/content.js"
      ]
    }
  ]
}