Hashword

Generate a unique, secure password for every web site from one master password.

Hashwordคืออะไร?

Hashword เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Michael Meisel และคุณลักษณะหลักของมันคือ "Generate a unique, secure password for every web site from one master password."

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

screenshot

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

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

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

                        No password is ever stored within the extension, or anywhere else for that matter! They are generated on demand using a cryptographic hash function. The inputs are your master password and the site URL. This means you get the same unique password for each site on demand, but it cannot be used to discover your master password.                    

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

ชื่อ Hashword Hashword
ID nkdpamnjhdjoncifjaoojhmfdmdknamo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hashword/nkdpamnjhdjoncifjaoojhmfdmdknamo
คำอธิบาย Generate a unique, secure password for every web site from one master password.
ขนาดไฟล์ 156 KB
จำนวนการติดตั้ง 79
เวอร์ชันปัจจุบัน 0.6.3
อัปเดตครั้งล่าสุด 2023-05-03
วันที่เผยแพร่ 2019-03-08
คะแนน 4.60/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Michael Meisel
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://meisel.dev/hashword/
URL หน้าช่วยเหลือ https://github.com/mmeisel/hashword
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hashword",
    "version": "0.6.3",
    "manifest_version": 2,
    "description": "Generate a unique, secure password for every web site from one master password.",
    "background": {
        "scripts": [
            "rules.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Hashword",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16-inactive.png",
            "19": "images\/icon19-inactive.png",
            "32": "images\/icon32-inactive.png",
            "38": "images\/icon38-inactive.png"
        }
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            }
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "incognito": "spanning",
    "minimum_chrome_version": "46",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "declarativeContent",
        "storage"
    ]
}