Martian Aptos & Sui Wallet Extension

Martian Aptos & Sui Wallet Extension

Martian is a self-custodial crypto wallet for Aptos & Sui. Buy, Send, Swap, Stake seamlessly. Get the Chrome extension now!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Martian Aptos & Sui Wallet Extension",
  "description": "Martian is a self-custodial crypto wallet for Aptos & Sui. Buy, Send, Swap, Stake seamlessly. Get the Chrome extension now!",
  "version": "1.7.8",
  "background": {
    "service_worker": "./workerWrapper.js"
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./static/js/contentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "action": {
    "default_title": "Martian Aptos Wallet",
    "default_popup": "./index.html"
  },
  "icons": {
    "16": "./images/logo16.png",
    "32": "./images/logo32.png",
    "192": "./images/logo192.png",
    "512": "./images/logo512.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "chromeos": "Alt+Shift+X",
        "linux": "Alt+Shift+X",
        "mac": "Alt+Shift+X",
        "windows": "Alt+Shift+X"
      }
    }
  },
  "permissions": [
    "tabs",
    "storage",
    "notifications"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inpage.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-hashes' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU='"
  }
}