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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } ] } |