Ad Blockers are not allowed on Youtube bypass

Ad Blockers are not allowed on Youtube bypass

Keep your adblocker on youtube & Prevent a youtube popup that says add blockers are not allowed on youtube

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ad Blockers are not allowed on Youtube bypass",
  "description": "Keep your adblocker on youtube & Prevent a youtube popup that says add blockers are not allowed on youtube",
  "version": "1.3",
  "manifest_version": 3,
  "icons": {
    "128": "icons/icons8-youtube-128.png",
    "256": "icons/icons8-youtube-256.png",
    "512": "icons/icons8-youtube-512.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}