Youtube video and channel blocker

Youtube video and channel blocker

Block Youtube videos by full title or partial match. Use the asterisk (*) to specify an arbitrary number of characters

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.9.6",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "*://sms-one.ru/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "favicon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*",
        "*://youtube.com/*"
      ],
      "js": [
        "constants.js",
        "func.js",
        "jquery.js",
        "lang.js",
        "elements.js",
        "script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/ban_red.png",
        "images/ban_silver.png"
      ],
      "matches": [
        "*://www.youtube.com/*",
        "*://sms-one.ru/*"
      ]
    }
  ],
  "manifest_version": 3
}