Eufedia

Eufedia

Eufedia The Browser Bodyguard is a browser extension capable of blocking threats in real time, along unwanted web contents

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Eufedia",
  "short_name": "Eufedia",
  "description": "Eufedia The Browser Bodyguard is a browser extension capable of blocking threats in real time, along unwanted web contents",
  "version": "2.0.0",
  "version_name": "2.0.0",
  "incognito": "split",
  "background": {
    "service_worker": "background.js"
  },
  "manifest_version": 3,
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ad",
        "enabled": false,
        "path": "ads-dnr.json"
      },
      {
        "id": "cryptominer",
        "enabled": false,
        "path": "cryptominers-dnr.json"
      },
      {
        "id": "tracking",
        "enabled": false,
        "path": "tracking-dnr.json"
      },
      {
        "id": "trackingExtra",
        "enabled": false,
        "path": "tracking-extra-dnr.json"
      }
    ]
  },
  "action": {
    "default_popup": "resources/popup/popup.html"
  },
  "permissions": [
    "management",
    "storage",
    "tabs",
    "webNavigation",
    "webRequest",
    "unlimitedStorage",
    "alarms",
    "scripting",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "history",
    "notifications"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "web-accessible-resources/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "inject-cosmetics.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "match_about_blank": true
    },
    {
      "js": [
        "messages-manager.js"
      ],
      "matches": [
        "https://app.eufedia.it/*"
      ],
      "run_at": "document_start"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://app.eufedia.it/*",
      "https://eufedia.it//*"
    ]
  },
  "author": "Oasi Team S.r.l",
  "icons": {
    "48": "resources/icons/icon_48.png",
    "96": "resources/icons/icon_96.png"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}