Simple Wallet for Casper

Simple Wallet for Casper

Multichain non-custodial staking crypto wallet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Simple Wallet for Casper",
  "description": "Multichain non-custodial staking crypto wallet",
  "version": "0.42",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Open the Wallet"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./static/js/content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/inject-script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "downloads",
    "activeTab"
  ],
  "icons": {
    "16": "logo192.png",
    "48": "logo192.png",
    "128": "logo192.png"
  }
}