WioKey Authenticator Companion

Online companion bridge for WioKey FIDO2 strong authenticator

WioKey Authenticator Companion란 무엇입니까?

WioKey Authenticator Companion은(는) https://wiosense.de에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Online companion bridge for WioKey FIDO2 strong authenticator"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

WioKey Authenticator Companion 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        WioKey replaces costly hardware security keys with a free app-based solution always on you.

This extension is a companion app and requires the WioKey app available on Android (https://play.google.com/store/apps/details?id=de.wiosense.wiokey&hl=en) and iOS (coming soon). 

Currently, WioKey allows you to use your biometrics or phone password/PIN for 2-Factor Authentication (2FA) with all web services that have support for hardware security key 2FA logins. Additionally, WioKey supports FIDO2 passwordless logins with Microsoft accounts, Windows PC login and other FIDO2-compliant web services.

For a list of U2F supported web portals, please see https://twofactorauth.org/. For FIDO2 supported websites, please see the commercial deployment on the FIDO2 alliance website (https://fidoalliance.org/).

For more information regarding privacy concerns, consumer possiblities, deployment in your business and our roadmap, please contact us at [email protected].                    

확장 프로그램 기본 정보

이름 WioKey Authenticator Companion WioKey Authenticator Companion
ID dejbgbcfgnegghgcnonglfmgoldddclb
공식 URL https://chromewebstore.google.com/detail/wiokey-authenticator-comp/dejbgbcfgnegghgcnonglfmgoldddclb
설명 Online companion bridge for WioKey FIDO2 strong authenticator
파일 크기 829 KB
설치 횟수 146
현재 버전 0.9.11
최근 업데이트 2020-10-04
출시 날짜 2020-09-08
평점 5.00/5 총 1 개의 평점
개발자 https://wiosense.de
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.wiokey.de/
도움말 페이지 URL https://www.wiokey.de/tutorial
개인정보 보호 정책 페이지 URL https://www.wiosense.de/imprint
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WioKey Authenticator Companion",
    "version": "0.9.11",
    "description": "Online companion bridge for WioKey FIDO2 strong authenticator",
    "minimum_chrome_version": "40.0.0.0",
    "icons": {
        "16": "assets\/icons\/wiokey_icon.png",
        "48": "assets\/icons\/wiokey_icon.png",
        "128": "assets\/icons\/wiokey_icon.png"
    },
    "browser_action": {
        "default_icon": "assets\/icons\/wiokey_icon.png",
        "default_popup": "index.html",
        "default_title": "WioKey Authenticator Companion"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content\/index_chrome.js"
            ],
            "run_at": "document_start",
            "matches": [
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/*\/*.xml"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "content\/index_swal2.js"
            ],
            "run_at": "document_end",
            "matches": [
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/*\/*.xml"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background\/index.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "content\/inject_webauthn_chrome.js",
        "content\/inject_hybridwebauthn_chrome.js",
        "content\/inject_u2f_chrome.js",
        "content\/inject_hybridu2f_chrome.js",
        "assets\/icons\/*.png"
    ],
    "permissions": [
        "https:\/\/*\/*",
        "tabs",
        "webNavigation"
    ],
    "externally_connectable": {
        "ids": [],
        "accepts_tls_channel_id": true
    },
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com https:\/\/www.googletagmanager.com https:\/\/stackpath.bootstrapcdn.com; object-src 'self'"
}