Ace AdBlocker

Ace AdBlocker

Simple to use ad blocker for all websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDesc__",
  "version": "2.0.5",
  "default_locale": "en",
  "action": {
    "default_title": "__MSG_appName__",
    "default_popup": "action.html"
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "content_scripts": [
    {
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "extended.js",
        "block.js"
      ],
      "run_at": "document_start",
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "alarms",
    "scripting",
    "storage",
    "unlimitedStorage",
    "declarativeNetRequest",
    "webNavigation"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "1",
        "enabled": true,
        "path": "dclrt/r_1.json"
      },
      {
        "id": "2",
        "enabled": true,
        "path": "dclrt/r_2.json"
      },
      {
        "id": "3",
        "enabled": true,
        "path": "dclrt/r_3.json"
      },
      {
        "id": "0",
        "enabled": true,
        "path": "dclrt/r_0.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "rds/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "icons": {
    "128": "i.png"
  }
}