Youtube zero ads

Youtube zero ads

Save time while browsing the internet and get rid of tiresome ads!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_application_title__",
  "description": "__MSG_application_description__",
  "version": "2.0.3",
  "icons": {
    "128": "logo128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content1.js"
      ],
      "run_at": "document_end",
      "match_about_blank": true
    }
  ],
  "permissions": [
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "random.png",
        "content2.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}