Hydro Wallet

Hydro Wallet

The Sui eco wallet that makes it easy to transfer tokens, collect NFTs, and discover web3 on Sui

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hydro Wallet",
  "homepage_url": "https://hydro.tech",
  "description": "The Sui eco wallet that makes it easy to transfer tokens, collect NFTs, and discover web3 on Sui",
  "default_locale": "en",
  "permissions": [
    "storage",
    "tabs",
    "system.display"
  ],
  "icons": {
    "192": "icons/192.png",
    "512": "icons/512.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/content-script.js",
        "js/inpage-script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Hydro Wallet",
    "default_icon": {
      "192": "icons/192.png",
      "512": "icons/512.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/inpage-script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "version": "0.1.1",
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  }
}