Omega Wallet - Aptos, SUI, EVM-based

Omega Wallet - Aptos, SUI, EVM-based

A secure blockchain wallet that supports: APTOS, SUI, EVM-based blockchains, DApp, DeFi, and acts as your portal to the Web3 world.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A secure blockchain wallet that supports: APTOS, SUI, EVM-based blockchains, DApp, DeFi, and acts as your portal to the Web3 world.",
  "version": "1.5.0",
  "manifest_version": 3,
  "name": "Omega Wallet - Aptos, SUI, EVM-based",
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "favicon-16x16.png",
      "32": "favicon-32x32.png",
      "96": "favicon-96x96.png"
    },
    "default_title": "Omega Wallet"
  },
  "icons": {
    "16": "favicon-16x16.png",
    "32": "favicon-32x32.png",
    "48": "favicon-48x48.png",
    "96": "favicon-96x96.png",
    "128": "favicon-128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "OmegaContentScript.bundle.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "OmegaInjectScript.bundle.js",
        "favicon-16x16.png",
        "favicon-32x32.png",
        "favicon-96x96.png",
        "favicon-128x128.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "resources": [
        "*.png",
        "*.eot",
        "*.woff",
        "*.woff2",
        "*.ttf",
        "*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "http://localhost:6002/",
    "file://*/*",
    "http://*/*",
    "https://*/*"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+Shift+N",
        "mac": "Alt+Shift+N",
        "chromeos": "Alt+Shift+N",
        "linux": "Alt+Shift+N"
      }
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; frame-ancestors 'none';"
  }
}