Vessel

Vessel

Web3 Passport & Multi-Chain Wallet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.4",
  "name": "Vessel",
  "description": "Web3 Passport & Multi-Chain Wallet",
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "action": {
    "default_icon": "img/logo128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "MacCtrl+Shift+K"
      },
      "description": "Open the Vessel chrome extension"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*"
    ]
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "alarms",
    "background",
    "cookies",
    "storage",
    "tabs",
    "scripting",
    "webRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "connectedSites.css",
        "walletConnect.css",
        "fonts.css",
        "fonts/*",
        "*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "vessel.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ]
}