Hashpass

A simple password manager with a twist.

Hashpassคืออะไร?

Hashpass เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Stephan Boyer และคุณลักษณะหลักของมันคือ "A simple password manager with a twist."

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

screenshot

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

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

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

                        Hashpass is a password manager which doesn't store any passwords. Instead, it generates passwords on the fly using a cryptographic hash function of the domain of the website you're visiting and a single universal password that you memorize. This gives you (a) the security of having a unique password for each website, (b) the convenience of only having to memorize one password, and (c) the comfort of knowing that neither you nor any third party can lose or leak your passwords.

Suppose your universal password is "correcthorsebatterystaple", and you want to sign up for or log into example.com. Hashpass combines your universal password with the website domain as follows: "example.com/correcthorsebatterystaple". It then computes the SHA-256 hash of that string. It hashes it again and again, 2^16 times in total. Finally, it outputs the first 96 bits of the result, encoded as 16 characters in Base64. For this example, the final output is "CqYHklMMg9/GTL0g". That's your password for example.com.

Once installed, you can find the Hashpass button next to your address bar or in the extensions dropdown. By default, you can also open Hashpass with Ctrl+Shift+P (Cmd+Shift+P on macOS).                    

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

ชื่อ Hashpass Hashpass
ID gkmegkoiplibopkmieofaaeloldidnko
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hashpass/gkmegkoiplibopkmieofaaeloldidnko
คำอธิบาย A simple password manager with a twist.
ขนาดไฟล์ 222 KB
จำนวนการติดตั้ง 128
เวอร์ชันปัจจุบัน 2.1.7
อัปเดตครั้งล่าสุด 2024-01-08
วันที่เผยแพร่ 2018-06-22
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Stephan Boyer
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://stepchowfun.github.io/hashpass/
URL หน้าช่วยเหลือ https://github.com/stepchowfun/hashpass
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hashpass",
    "description": "A simple password manager with a twist.",
    "version": "2.1.7",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "images\/icon.png",
            "32": "images\/icon.png",
            "48": "images\/icon.png",
            "128": "images\/icon.png"
        }
    },
    "icons": {
        "16": "images\/icon.png",
        "32": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+P"
            },
            "description": "Opens Hashpass"
        }
    }
}