Video Ad Blocker Plus for YouTube™

Video Ad Blocker Plus for YouTube™

Block disruptive video ads on YouTube™ and avoid adult video content anywhere on the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Video Ad Blocker Plus for YouTube™",
  "description": "Block disruptive video ads on YouTube™ and avoid adult video content anywhere on the web",
  "version": "1.1.16",
  "manifest_version": 3,
  "action": {
    "default_icon": "img/Icon_128.png",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "content_start.js"
      ],
      "match_about_blank": true
    },
    {
      "all_frames": false,
      "js": [
        "youtubeBlocker.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "tabs",
    "webNavigation",
    "webRequest",
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "16": "img/Icon_16.png",
    "48": "img/Icon_48.png",
    "128": "img/Icon_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "vab_intercept.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}