Prevent Pwned Passwords
Checks password hashes against Have I Been Pwned and displays a notification if the hash has been leaked in a breach.
什麼是Prevent Pwned Passwords?
Prevent Pwned Passwords是由Chris Wilson開發的Chrome擴展程式,該擴展的主要功能是“Checks password hashes against Have I Been Pwned and displays a notification if the hash has been leaked in a breach.”。
擴展截圖
下載Prevent Pwned Passwords擴展crx文件
下載Prevent Pwned Passwords擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Prevent Pwned Passwords helps make sure you don't use any password that's known to have been part of a data breach. If you try to use a password that's known to have been compromised, you'll get an alert. You can choose to run it whenever you enter a password on any site, whenever you enter a password on a "Create Account" page, or only when you choose to check a password from a context menu. You can also whitelist sites, giving you greater control over what passwords are checked. This extension hashes your password and securely checks that hash against a database of hashes known to be breached. If it's been involved in a past breach (of any account across hundreds of sites), it notifies you so you can change your password. Note that the only data ever transmitted is a password hash. We never send a clear-text password or any identifiable information like a username or a URL. This extension uses the Have I Been Pwned service.
擴展基本資訊
名稱 | Prevent Pwned Passwords |
ID | paejfbiaafjadancnngnnhddeahmncba |
官方網址 | https://chromewebstore.google.com/detail/prevent-pwned-passwords/paejfbiaafjadancnngnnhddeahmncba |
簡介 | Checks password hashes against Have I Been Pwned and displays a notification if the hash has been leaked in a breach. |
檔案大小 | 26.72 KB |
安裝次數 | 96 |
目前版本 | 1.1.0 |
更新時間 | 2017-10-28 |
上架時間 | 2017-10-28 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Chris Wilson |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://chrisp1118.github.io/PreventPwnedPasswords/ |
隱私政策頁面URL | https://chrisp1118.github.io/PreventPwnedPasswords/privacy-policy.html |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Prevent Pwned Passwords", "short_name": "PreventPwned", "description": "Checks password hashes against Have I Been Pwned and displays a notification if the hash has been leaked in a breach.", "version": "1.1.0", "icons": { "16": "ppp_16.png", "48": "ppp_48.png", "128": "ppp_128.png" }, "permissions": [ "notifications", "storage", "contextMenus" ], "background": { "scripts": [ "background.js", "sha1.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "ppp.js" ], "run_at": "document_end" } ] } |