IAMX

IAMX

IAMX Identity Wallet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "IAMX",
  "description": "IAMX Identity Wallet",
  "version": "1.2.6",
  "manifest_version": 3,
  "icons": {
    "16": "./images/icon-16x16.png",
    "32": "./images/icon-32x32.png",
    "48": "./images/icon-48x48.png",
    "128": "./images/icon-128x128.png"
  },
  "background": {
    "service_worker": "./background.js",
    "background_page": "/wallet.html"
  },
  "action": {
    "default_popup": "./wallet.html",
    "default_icons": {
      "16": "./images/icon-16x16.png",
      "32": "./images/icon-32x32.png",
      "48": "./images/icon-48x48.png",
      "128": "./images/icon-128x128.png"
    }
  },
  "options_page": "./wallet.html",
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://www.google.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  },
  "externally_connectable": {
    "ids": [
      "*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "document_start.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}