Braavos - Starknet Wallet

Braavos - Starknet Wallet

Most advanced and user-friendly Starknet wallet, featuring 2FA / 3FA security and enhanced DeFi capabilities.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDescription__",
  "version": "3.48.1",
  "homepage_url": "https://www.braavos.app",
  "author": "https://www.braavos.app",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Open Braavos Wallet"
  },
  "background": {
    "service_worker": "bg-loader.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://localhost/*",
        "https://*/*"
      ],
      "js": [
        "static/js/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/js/inpage.js"
      ],
      "matches": [
        "http://localhost/*",
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "object-src 'self'; script-src 'self';"
  },
  "externally_connectable": {
    "ids": []
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "storage",
    "alarms",
    "notifications",
    "gcm"
  ],
  "minimum_chrome_version": "96",
  "default_locale": "en"
}