Ad blocker

Ad blocker

Ads and pop-ups blocker for YouTube, Facebook and other sites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ad blocker",
  "version": "1.3",
  "description": "Ads and pop-ups blocker for YouTube, Facebook and other sites",
  "permissions": [
    "tabs",
    "declarativeNetRequest",
    "storage"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "blockLIST",
        "enabled": true,
        "path": "my.json"
      },
      {
        "id": "advLIST",
        "enabled": false,
        "path": "adv.json"
      },
      {
        "id": "antiprnLIST",
        "enabled": false,
        "path": "antiprn.json"
      },
      {
        "id": "suspLIST",
        "enabled": false,
        "path": "susp.json"
      }
    ]
  },
  "icons": {
    "48": "./icons/icon48.png",
    "128": "./icons/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "yt_blocks.js",
        "content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "action": {
    "default_popup": "Popup.html",
    "default_title": "Adblocker"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "manifest_version": 3
}