Eclipse Ad Blocker

Eclipse Ad Blocker

Blocks intrusive ads on most 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__",
  "description": "__MSG_appDesc__",
  "version": "2.0.1",
  "default_locale": "en",
  "icons": {
    "128": "eclipse.png"
  },
  "action": {
    "default_title": "__MSG_appName__",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "ServiceWorker.js"
  },
  "content_scripts": [
    {
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "ExtendedCSS.js",
        "ContentScript.js"
      ],
      "run_at": "document_start",
      "matches": [
        "*://*/*"
      ]
    },
    {
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "youtube.js"
      ],
      "run_at": "document_start",
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "permissions": [
    "alarms",
    "scripting",
    "storage",
    "unlimitedStorage",
    "declarativeNetRequest",
    "webNavigation"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "1",
        "enabled": true,
        "path": "static_filters/r_0.json"
      },
      {
        "id": "2",
        "enabled": true,
        "path": "static_filters/r_1.json"
      },
      {
        "id": "3",
        "enabled": true,
        "path": "static_filters/r_2.json"
      },
      {
        "id": "4",
        "enabled": true,
        "path": "static_filters/r_3.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "static_filters/redirects/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "use_dynamic_url": true
    }
  ]
}