WebDevAuthn

Debug FIDO2 requests and responses

Что такое WebDevAuthn?

WebDevAuthn - это расширение Chrome, разработанное DinoDevs, и его основная функция - "Debug FIDO2 requests and responses".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения WebDevAuthn

Скачайте файлы расширений WebDevAuthn в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Analyse FIDO2/WebAuthn requests and responses

Analyser Features:
- Capture WebAuthn requests
- Analyse WebAuthn options (show info, warnings & errors)
- Unpack/Decode WebAuthn authenticator responses
- Virtual Authenticator Device (for custom responses)

Virtual Authenticator Device
- OS independent
- Supports packed attestation
- Supports wrapped keys to credentials id
- Access to the private key of the generated credentials
- Testing mode to assess implementations
- Multiple supported algorithms                    

Основная информация о расширении

Название WebDevAuthn WebDevAuthn
ID aofdjdfdpmfeohecddhgdjfnigggddpd
Официальный URL https://chromewebstore.google.com/detail/webdevauthn/aofdjdfdpmfeohecddhgdjfnigggddpd
Описание Debug FIDO2 requests and responses
Размер файла 18.55 KB
Количество установок 370
Текущая Версия 0.5
Последнее Обновление 2022-03-07
Дата публикации 2022-03-07
Разработчик DinoDevs
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://gramthanos.github.io/WebDevAuthn/
URL страницы помощи https://github.com/GramThanos/WebDevAuthn/issues
Поддерживаемые языки en
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": [
        ""
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "webauthn-dev.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ],
            "extension_ids": []
        }
    ],
    "manifest_version": 3
}