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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" ] } |