SquadsX

SquadsX

Multisig extension wallet for Solana. Interact with Solana ecosystem with enterprise-level security.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SquadsX",
  "version": "0.2.12",
  "icons": {
    "16": "16x16.png",
    "32": "32x32.png",
    "48": "48x48.png",
    "128": "128x128.png",
    "256": "256x256.png"
  },
  "description": "Multisig extension wallet for Solana. Interact with Solana ecosystem with enterprise-level security.",
  "action": {
    "default_icon": {
      "16": "16x16.png",
      "32": "32x32.png",
      "48": "48x48.png",
      "128": "128x128.png",
      "256": "256x256.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "realms/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "realms/contentScript/index.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "realms/injected/index.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}