Open Two-Factor Authenticator

An open-source two-factor Time-based One-Time Password (TOTP) authenticator with SHA-256 secure storage

Open Two-Factor Authenticator란 무엇입니까?

Open Two-Factor Authenticator은(는) https://add0n.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An open-source two-factor Time-based One-Time Password (TOTP) authenticator with SHA-256 secure storage"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Open Two-Factor Authenticator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Open Two-Factor Authenticator aims to provide an open-source two-factor authentication to browsers and Android devices with synced storage.

By using this extension, you can have your encrypted keys stored in the browser's synced storage. This allows you to sync them across multiple devices. This extension uses the public key/private key method to encrypt stored data (SHA-256).

Currently, Open Two-Factor Authenticator supports Firefox on Desktop, Firefox on Android, Chrome, Edge, and Opera browsers. Standalone Android implantation is still in progress.

Features:
1. Stores secrets securely using AES-CBC encryption.
2. Does not store passwords
3. Does not have any server-side activities whatsoever
4. Uses synced storage, so secrets are securely shared between multiple devices.
5. Supports custom number of digits and custom validation period                    

확장 프로그램 기본 정보

이름 Open Two-Factor Authenticator Open Two-Factor Authenticator
ID dckgbiealcgdhgjofgcignfngijpbgba
공식 URL https://chromewebstore.google.com/detail/open-two-factor-authentic/dckgbiealcgdhgjofgcignfngijpbgba
설명 An open-source two-factor Time-based One-Time Password (TOTP) authenticator with SHA-256 secure storage
파일 크기 259 KB
설치 횟수 15,047
현재 버전 0.3.1
최근 업데이트 2023-08-22
출시 날짜 2019-09-12
평점 3.00/5 총 9 개의 평점
개발자 https://add0n.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://webextension.org/listing/two-factor-authenticator.html
도움말 페이지 URL https://webextension.org/listing/two-factor-authenticator.html
개인정보 보호 정책 페이지 URL https://add0n.com/policies/inb.cor.txt
지원되는 언어 de,en,fr,nl,es,it,pt-BR,pt-PT,ru,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open Two-Factor Authenticator",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "0.3.1",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "notifications"
    ],
    "offline_enabled": true,
    "homepage_url": "https:\/\/webextension.org\/listing\/two-factor-authenticator.html",
    "background": {
        "service_worker": "worker.js"
    },
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "action": {
        "default_popup": "\/data\/popup\/index.html"
    },
    "commands": {
        "_execute_action": []
    }
}