TRIO Wallet

TRIO Wallet

Ethereum Browser Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "short_name": "__MSG_appName__",
  "version": "1.0.30",
  "manifest_version": 3,
  "author": "https://id-bound.com",
  "description": "__MSG_appDescription__",
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Alt+Shift+M",
        "mac": "Alt+Shift+M",
        "chromeos": "Alt+Shift+M",
        "linux": "Alt+Shift+M"
      }
    }
  },
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "TRIO Named Crypto Wallet",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "clipboardWrite",
    "activeTab",
    "notifications",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>",
    "http://localhost:8545/",
    "https://*.infura.io/",
    "*://*.eth/",
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inpage.js"
      ],
      "matches": [
        "https://saas.id-bound.com/*",
        "https://id-bound.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://saas.id-bound.com/*"
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}