mini authenticator

minimal open source authenticator that never store your secret keys

mini authenticatorคืออะไร?

mini authenticator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hoishing และคุณลักษณะหลักของมันคือ "minimal open source authenticator that never store your secret keys"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย mini authenticator

ดาวน์โหลดไฟล์ส่วนขยาย mini authenticator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ## Features

- no special permission need: we don't read / write your web pages
- simple, single-purpose: just paste your key and we generate the time-base onetime password(TOTP) for two factor aurthentication(2FA)
- secure: we do **NOT** store your keys in any places (cookies, chrome storage, cloud ... etc)
- offline: no sensitive data transmitted over the internet
- open source: everyone can check the source code integrity

## How to use

🎬 https://youtu.be/64P0G7dOpKY

1. click on the extension button
2. paste your secret key
3. get your 2FA passcode 🎉

## Motivation

I've used authenticators that are packed with features. They allow you to save your secret keys, sync them across different devices through the internet, also import/export the keys by QRCode. If you are looking for tools like that, I recommend https://authenticator.cc , it's handy, open source and well documented 👍

However, password managers such as Bitwarden, Apple Keychain ... etc already did a very good job in storing and syncing keys across devices. I want to rely on them in secret key management, and let the authenticator extension do only one thing - generate TOTP for 2FA, nothing more.

This is where Mini Authenticator comes in. It designed with a "less is more" philosophy in mind. I cut all functionalities that already handled by password managers, and only perform the pure mathematical calculation of TOTP. So it doesn't require storage, read/write your web pages, internet access, special permissions... etc. And most importantly, it's open source, so everyone can inspect and help improving it in future.

I agree that this extension is not for everyone, but only those already using password mangers to manage their secret keys, also those who concern about chrome extension permissions and abilities.

## Need Help?

Visit the project repository:

https://github.com/hoishing/mini-authenticator

for technicial details. You may also open issues in the project repo, or ping me on Twitter https://twitter.com/hoishing                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ mini authenticator mini authenticator
ID nmhjblhloefhbhgbfkdgdpjabaocnhha
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mini-authenticator/nmhjblhloefhbhgbfkdgdpjabaocnhha
คำอธิบาย minimal open source authenticator that never store your secret keys
ขนาดไฟล์ 70.61 KB
จำนวนการติดตั้ง 116
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2022-10-06
วันที่เผยแพร่ 2022-10-04
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา hoishing
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/hoishing/mini-authenticator
URL หน้าช่วยเหลือ https://github.com/hoishing/mini-authenticator/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "mini authenticator",
    "description": "minimal open source authenticator that never store your secret keys",
    "version": "1.0.2",
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "64": "auth-64.png",
        "128": "auth-128.png"
    }
}