Core Protect

Core Protect

Pre-screen Ethereum transactions to detect scams before they happen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Core Protect",
  "description": "Pre-screen Ethereum transactions to detect scams before they happen.",
  "icons": {
    "16": "icons/logo-filled-16.png",
    "32": "icons/logo-filled-32.png",
    "48": "icons/logo-filled-48.png",
    "96": "icons/logo-filled-96.png",
    "128": "icons/logo-filled-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/inject.js"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "icons/logo-filled-16.png",
      "32": "icons/logo-filled-32.png",
      "48": "icons/logo-filled-48.png",
      "96": "icons/logo-filled-96.png",
      "128": "icons/logo-filled-128.png"
    },
    "default_title": "Core Protect",
    "default_popup": "popup/app.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content_scripts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "version": "2.3.1"
}