WebDevAuthn

WebDevAuthn

Debug FIDO2 requests and responses

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WebDevAuthn",
  "description": "Debug FIDO2 requests and responses",
  "author": "Athanasios Vasileios Grammatopoulos",
  "version": "0.5",
  "icons": {
    "19": "icons/icon.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "inject.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "webauthn-dev.js"
      ],
      "matches": [
        "https://*/*"
      ],
      "extension_ids": []
    }
  ],
  "manifest_version": 3
}