Morphis Wallet

Morphis Wallet

Morphis - the most friendly wallet on Sui

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Morphis Wallet",
  "description": "Morphis - the most friendly wallet on Sui",
  "version": "0.0.9.4",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "tabs",
    "alarms"
  ],
  "action": {
    "default_popup": "ui.html?type=popup"
  },
  "host_permissions": [
    "http://127.0.0.1:5001/",
    "https://fullnode.devnet.sui.io/",
    "https://fullnode.staging.sui.io/"
  ],
  "icons": {
    "16": "manifest/icons/morphis-logo-16.png",
    "32": "manifest/icons/morphis-logo-32.png",
    "48": "manifest/icons/morphis-logo-48.png",
    "128": "manifest/icons/morphis-logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dapp-interface.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}