YouTube AdBlock iFrame

YouTube AdBlock iFrame

This YouTube AdBlock iFrame module allows you to replace YouTube videos with iframes. Ads are blocked on iframes due to cross-origin resource sharing (CORS) restrictions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube AdBlock iFrame",
  "version": "1.0.1",
  "description": "This YouTube AdBlock iFrame module allows you to replace YouTube videos with iframes. Ads are blocked on iframes due to cross-origin resource sharing (CORS) restrictions.",
  "icons": {
    "32": "icons/icon-32.png",
    "96": "icons/icon-96.png"
  },
  "permissions": [
    "*://*.youtube.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://youtube.com/*",
        "*://youtu.be/*"
      ],
      "js": [
        "main.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{1d8c4bfa-6e76-4bcb-a492-06670fc7179d}"
    }
  }
}