web2FA - Browser Authenticator

Easily generate two factor authentication - 2FA - or one-time password - OTP - codes in your browser with web2FA Authenticator.

web2FA - Browser Authenticator란 무엇입니까?

web2FA - Browser Authenticator은(는) hicallmeal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily generate two factor authentication - 2FA - or one-time password - OTP - codes in your browser with web2FA Authenticator."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

web2FA - Browser Authenticator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Tired of needing to take out your phone every time you sign in everywhere? What if your phone's dead? web2FA is your solution.

Protect your accounts with two-factor authentication - 2FA, with convenience.

How to use:
Simply drag over and scan QR codes to add accounts.
Paste in 2FA codes in when needed.

- Minimal, works offline, no account needed
- Supports all accounts - Twitter, Instagram, Google + more 
- Easily import from other authenticators
- Unlimited accounts
- Easily backup

It's still recommended you have primary source of 2FA codes.                    

확장 프로그램 기본 정보

이름 web2FA - Browser Authenticator web2FA - Browser Authenticator
ID gmegpkknicehidppoebnmbhndjigpica
공식 URL https://chromewebstore.google.com/detail/web2fa-browser-authentica/gmegpkknicehidppoebnmbhndjigpica
설명 Easily generate two factor authentication - 2FA - or one-time password - OTP - codes in your browser with web2FA Authenticator.
파일 크기 488 KB
설치 횟수 524
현재 버전 1.5.2.1
최근 업데이트 2023-03-15
출시 날짜 2022-02-17
평점 4.25/5 총 4 개의 평점
개발자 hicallmeal
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "web2FA - Browser Authenticator",
    "description": "Easily generate two factor authentication - 2FA - or one-time password - OTP - codes in your browser with web2FA Authenticator.",
    "version": "1.5.2.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "web2FA"
    },
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/jsOTP.min.js",
                "scripts\/qrcode.js",
                "scripts\/content_script.js"
            ],
            "css": [
                "scripts\/injected_css.css"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ]
}