DID Wallet

DID Wallet

DID wallet browser extensions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "DID Wallet",
  "version": "4.11.2",
  "manifest_version": 3,
  "description": "DID wallet browser extensions",
  "icons": {
    "16": "16.png",
    "24": "24.png",
    "32": "32.png",
    "128": "128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "offscreen",
    "idle",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "action": {
    "default_icon": {
      "16": "16.png",
      "24": "24.png",
      "32": "32.png",
      "128": "128.png"
    },
    "default_title": "DID WALLET",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inpage.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}