YouTube Ad Blocker

YouTube Ad Blocker

YouTube Ad Blocker - Automatically blocks the ads and skips the ads as soon as "Skip Ad" button appears.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.1.0",
  "manifest_version": 3,
  "name": "YouTube Ad Blocker",
  "description": "YouTube Ad Blocker - Automatically blocks the ads and skips the ads as soon as \"Skip Ad\" button appears.",
  "author": "TIKAM CHAND MEGHWANSHI",
  "homepage_url": "https://www.tcmhack.in",
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "./js/content.js"
      ],
      "run_at": "document_start",
      "matches": [
        "*://*.youtube.com/*",
        "*://youtube.com/*"
      ]
    }
  ],
  "permissions": [
    "declarativeNetRequest"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset1",
        "enabled": true,
        "path": "./rules.json"
      }
    ]
  }
}