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 |
电子邮箱 | [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" ] } |