Hashword

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

什麼是Hashword?

Hashword是由Michael Meisel開發的Chrome擴展程式,該擴展的主要功能是“Generate a unique, secure password for every web site from one master password.”。

擴展截圖

screenshot

下載Hashword擴展crx文件

下載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
官方網址 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"
    ]
}