PwdHash port
Pwdhash 1.7 for Chrome. Automatically generates per-site passwords if you prefix your password with @@ or F2.
什么是PwdHash port?
PwdHash port是由Christophe Liou Kee On开发的Chrome扩展程序,该扩展的主要功能是“Pwdhash 1.7 for Chrome. Automatically generates per-site passwords if you prefix your password with @@ or F2.”。
扩展截图
下载PwdHash port扩展crx文件
下载PwdHash port扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
WARNING! this extension using original pwdhash is vulnerable to a brute force attack : https://linuxundich.de/gnu-linux/erfolgreicher-brute-force-angriff-auf-pwdhash/
If you can, choose another extension.
This extension is a pwdhash port for Google Chrome.
Official pwdhash project home can be found here : https://www.pwdhash.com/ 扩展基本信息
| 名称 | |
| ID | dnfmcfhnhnpoehjoommondmlmhdoonca |
| 官方URL | https://chromewebstore.google.com/detail/pwdhash-port/dnfmcfhnhnpoehjoommondmlmhdoonca |
| 简介 | Pwdhash 1.7 for Chrome. Automatically generates per-site passwords if you prefix your password with @@ or F2. |
| 文件大小 | 212 KB |
| 安装次数 | 1,675 |
| 当前版本 | 1.0.0.3 |
| 更新时间 | 2021-07-14 |
| 上架时间 | 2016-12-30 |
| 评分 | 4.66/5 共61次评分 |
| 开发者 | Christophe Liou Kee On |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/infocris/pwdhash |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "PwdHash port",
"version": "1.0.0.3",
"manifest_version": 2,
"description": "Pwdhash 1.7 for Chrome. Automatically generates per-site passwords if you prefix your password with @@ or F2.",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start",
"all_frames": true,
"js": [
"stanford-pwdhash\/chrome\/content\/md5.js",
"stanford-pwdhash\/chrome\/content\/domain-extractor.js",
"stanford-pwdhash\/chrome\/content\/hashed-password.js",
"stanford-pwdhash\/chrome\/content\/stanford-pwdhash.js",
"null.js",
"AlternativeDomain.js",
"jquery.js",
"KeyHooker.js",
"Settings.js",
"pwdhash-chrome-port.js"
]
}
],
"options_page": "options.html",
"background": {
"page": "background.html"
},
"icons": {
"48": "images\/icon48-stable.png",
"128": "images\/icon128-stable.png"
},
"page_action": {
"default_icon": "images\/icon19off.png",
"default_title": "PwdHash",
"default_popup": "popup.html"
}
} | |