Wigwam — Web3 Wallet

Wigwam — Web3 Wallet

Reliable and secure self-custody crypto wallet for Ethereum and all EVM blockchains

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Wigwam — Web3 Wallet",
  "version": "2.4.7",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/128.png",
    "128": "icons/512.png"
  },
  "description": "__MSG_appDesc__",
  "homepage_url": "https://wigwam.app",
  "short_name": "Wigwam",
  "permissions": [
    "tabs",
    "storage",
    "clipboardWrite",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "http://localhost:8545/",
    "file://*/*",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; frame-ancestors 'none';"
  },
  "author": "https://wigwam.app",
  "minimum_chrome_version": "88",
  "default_locale": "en",
  "action": {
    "default_popup": "popup.html",
    "default_title": "Wigwam",
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/128.png",
      "128": "icons/512.png"
    },
    "chrome_style": false
  },
  "background": {
    "service_worker": "sw.js"
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "https://wigwam.app/*"
      ],
      "js": [
        "scripts/version.js"
      ],
      "run_at": "document_start"
    }
  ]
}