WebDevAuthn

WebDevAuthn

Debug FIDO2 requests and responses

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "WebDevAuthn",
  "description": "Debug FIDO2 requests and responses",
  "author": "Athanasios Vasileios Grammatopoulos",
  "version": "0.6",
  "homepage_url": "https://gramthanos.github.io/WebDevAuthn/",
  "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://*/*"
      ]
    }
  ],
  "manifest_version": 3,
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}