Eternl

Eternl

A Cardano light wallet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Eternl",
  "author": "Tastenkunst GmbH",
  "version": "1.12.2.14",
  "homepage_url": "https://eternl.io",
  "description": "A Cardano light wallet.",
  "background": {
    "service_worker": "app/bg.js",
    "type": "module"
  },
  "icons": {
    "16": "icons/favicon-16x16.png",
    "32": "icons/favicon-32x32.png",
    "48": "icons/favicon-48x48.png",
    "96": "icons/favicon-96x96.png",
    "128": "icons/favicon-128x128.png"
  },
  "action": {
    "default_title": "Eternl"
  },
  "content_scripts": [
    {
      "js": [
        "vendor/trezor-content-script.js"
      ],
      "matches": [
        "*://connect.trezor.io/*/popup.html"
      ]
    },
    {
      "js": [
        "app/content.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "exclude_matches": [
        "*://miro.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "app/dom.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "externally_connectable": {
    "matches": [
      "*://connect.trezor.io/9/*"
    ]
  },
  "permissions": [
    "activeTab",
    "offscreen",
    "scripting",
    "storage",
    "tabs",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*",
    "*://connect.trezor.io/9/*",
    "https://*.eternl.io/*",
    "https://*.ccvault.io/*",
    "https://*.trezor.io/*",
    "https://*.coingecko.com/*",
    "https://*.eternl.nftcdn.io/*"
  ]
}