Password Check
Password Check
什么是Password Check?
Password Check是由sampiochua开发的Chrome扩展程序,该扩展的主要功能是“Password Check”。
扩展截图
下载Password Check扩展crx文件
下载Password Check扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Click the "Check Your Password" button to check if the password you key in on a webpage has been exposed by in previous data breaches. This check is done by checking against API provided by https://haveibeenpwned.com
Your actual password is NEVER stored or sent over the Internet to the API. This is implemented using the K-Anonymity model. NO ONE will know what you have actually typed into the password field. Check out more details at https://haveibeenpwned.com/FAQs.
Credit to https://haveibeenpwned.com for providing us with an API to access a database of pwned password.
If you still don't feel safe, then DO NOT use this extension. 扩展基本信息
| 名称 | |
| ID | ccdjmhmjafjancfmlpjkcjjieibefipb |
| 官方URL | https://chromewebstore.google.com/detail/password-check/ccdjmhmjafjancfmlpjkcjjieibefipb |
| 简介 | Password Check |
| 文件大小 | 20.56 KB |
| 安装次数 | 112 |
| 当前版本 | 1.0.7 |
| 更新时间 | 2019-06-06 |
| 上架时间 | 2019-06-06 |
| 开发者 | sampiochua |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Password Check",
"version": "1.0.7",
"description": "Password Check",
"permissions": [
"activeTab",
"declarativeContent"
],
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/lock-16.png",
"32": "images\/lock-32.png",
"48": "images\/lock-48.png",
"128": "images\/lock-128.png"
}
},
"icons": {
"16": "images\/lock-16.png",
"32": "images\/lock-32.png",
"48": "images\/lock-48.png",
"128": "images\/lock-128.png"
},
"manifest_version": 2
} | |