AdGuard: Free Ad Blocker For Chrome

AdGuard: Free Ad Blocker For Chrome

AdGuard: Free Ad Blocker For Chrome, Blocks ads on Facebook, YouTube and all other websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AdGuard: Free Ad Blocker For Chrome",
  "description": "AdGuard: Free Ad Blocker For Chrome, Blocks ads on Facebook, YouTube and all other websites.",
  "version": "2.0",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "js/service_worker.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/image/icon16.png",
      "32": "/image/icon32.png",
      "48": "/image/icon48.png",
      "128": "/image/icon128.png"
    }
  },
  "icons": {
    "16": "/image/icon16.png",
    "32": "/image/icon32.png",
    "48": "/image/icon48.png",
    "128": "/image/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ]
}