Glow - Solana Wallet BETA

Glow - Solana Wallet BETA

A fast, easy to use Solana wallet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.60.0",
  "description": "A fast, easy to use Solana wallet",
  "name": "Glow - Solana Wallet BETA",
  "permissions": [
    "storage",
    "tabs",
    "alarms",
    "webNavigation"
  ],
  "icons": {
    "256": "icon-256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "*://localhost/*"
      ],
      "js": [
        "realms/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 3,
  "background": {
    "service_worker": "realms/background.js"
  },
  "action": {
    "default_icon": "icon-256.png",
    "default_title": "Glow - Solana Wallet",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "realms/inpage.js"
      ]
    }
  ]
}