Venom Wallet

Venom Wallet

Manage Venom wallets and access dApps directly from your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Venom Wallet",
  "version": "0.3.169",
  "description": "Manage Venom wallets and access dApps directly from your browser",
  "minimum_chrome_version": "102",
  "action": {
    "default_title": "Venom Wallet",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/worker.js"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png",
    "256": "icon256.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "notifications",
    "alarms",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/contentscript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/js/*",
        "/assets/*",
        "phishing-warning.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}