Adblocker for YouTube - Ultimate

Ultimate AdBlocker for YouTube for ads free youtube experience
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Adblocker for YouTube - Ultimate",
  "version": "2.2",
  "description": "Ultimate AdBlocker for YouTube for ads free youtube experience",
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "commonrules",
        "enabled": true,
        "path": "commonrules.json"
      }
    ]
  },
  "permissions": [
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "storage",
    "webRequest"
  ],
  "icons": {
    "128": "ytultimate.png"
  },
  "action": {
    "default_icon": "yt.png",
    "default_title": "Adblocker for YouTube - Ultimate"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 3
}