Mega AdBlock for Websites & YouTube™

Mega AdBlock for Websites & YouTube™

Mega AdBlock removes unwanted websites and video ads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_nomeExtensao__",
  "description": "__MSG_descricaoExtensao__",
  "default_locale": "en",
  "version": "2.0.2.0",
  "manifest_version": 3,
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "service_worker": "scripts/background-script.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "scripts/insite-ads-blocking.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "scripts/net-request-block-filters.json"
      }
    ]
  },
  "action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "__MSG_nomeExtensao__",
    "default_popup": "pages/popup.html"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "cookies",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}