FoxEye

FoxEye

FoxEye - Metamask Protector

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "1.0.8",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "js/content.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "js/foxeyeProxy.js",
        "css/*",
        "manifest.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "/icons/logo.png",
      "32": "/icons/logo.png",
      "48": "/icons/logo.png",
      "128": "/icons/logo.png"
    },
    "default_title": "Foxeye"
  },
  "icons": {
    "16": "/icons/logo.png",
    "32": "/icons/logo.png",
    "48": "/icons/logo.png",
    "128": "/icons/logo.png"
  },
  "default_locale": "en"
}