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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Checks password hashes against Have I Been Pwned and displays a notification if the hash has been leaked in a breach."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Prevent Pwned Passwords एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } ] } |