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”。
擴展截圖
下載Open Two-Factor Authenticator擴展crx文件
下載Open Two-Factor Authenticator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | dckgbiealcgdhgjofgcignfngijpbgba |
官方網址 | 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": [] } } |