AdzShield

AdzShield

Automatically skips ads on Youtube and hides ads on Google.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "manifest_version": 3,
  "version": "1.0.4",
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://www.google.com/*",
        "https://www.google.fr/*",
        "https://www.google.de/*",
        "https://www.google.com.br/*",
        "https://www.google.it/*",
        "https://www.google.es/*",
        "https://www.google.co.uk/*",
        "https://www.google.co.in/*",
        "https://www.google.nl/*",
        "https://www.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "alarms"
  ],
  "icons": {
    "128": "128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "128.png",
        "c.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}