Cactus Link

Cactus Link

The crypto wallet developed by Cactus Custody for Solana blockchain and Ethereum compatible blockchain to access DeFi & Web3.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cactus Link",
  "version": "2.0.22",
  "manifest_version": 3,
  "description": "The crypto wallet developed by Cactus Custody for Solana blockchain and Ethereum compatible blockchain to access DeFi & Web3.",
  "icons": {
    "16": "icons/logo16.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png"
  },
  "permissions": [
    "storage",
    "alarms",
    "tabs",
    "unlimitedStorage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/logo16.png",
      "48": "icons/logo48.png",
      "128": "icons/logo128.png"
    }
  },
  "background": {
    "service_worker": "static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "static/js/inpage.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "world": "MAIN"
    },
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "static/js/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "https://debug.mycactus.dev:1443/*",
        "https://www.mycactus.dev/*",
        "https://*.mycactus.com/*"
      ],
      "js": [
        "static/js/content-mycactus.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://*/*"
      ],
      "resources": [
        "/static/js/inpage.js",
        "/static/js/inpage-mycactus.js"
      ]
    }
  ]
}