Leap Terra Wallet

Leap Terra Wallet

A crypto wallet for the Terra Blockchain.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Leap Terra Wallet",
  "description": "A crypto wallet for the Terra Blockchain.",
  "version": "0.10.22",
  "options_ui": {
    "page": "index.html"
  },
  "browser_action": {
    "default_icon": "favicon.png",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "148": "icon-148.png"
  },
  "background": {
    "scripts": [
      "background.js",
      "backgroundPopup.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "inpage.js"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+L"
      }
    }
  },
  "permissions": [
    "storage"
  ],
  "content_security_policy": "default-src 'none'; object-src 'none'; script-src 'self' 'wasm-unsafe-eval'; img-src * 'self' data: https:; font-src https://fonts.gstatic.com; style-src 'self' https://fonts.googleapis.com  data: 'unsafe-inline'; connect-src * data: blob: filesystem:; media-src * data: blob: filesystem:; form-action 'self'; frame-ancestors 'none'; base-uri 'self'"
}