Password Hasher
Converts weak passwords to domain specific strong ones
Password Hasher क्या है?
Password Hasher Arnab द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Converts weak passwords to domain specific strong ones"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Password Hasher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This application uses a hash function to generate strong domain specific passwords using weak ones. Tired of having to make up and remember different passwords for each new website that asks for a login? Tired of sites insisting your password must have upper case, lower case, number, symbol and what not? If so, your life is about to become easier! Now you can remember _one_ weak password to generate unique ultra strong domain specific passwords. This takes the following three components - 1) Any password you type (can be very weak, for example "AAA" or "123") 2) Your master password (set this in options) 3) Domain name of the current URL (so www.facebook.com and help.facebook.com will get same strong password, while facebook.com and google.com will get different passwods) It then generates a random-looking password using these. In practice after setting the master password, you may need only want to change (1), or even none of these for that matter. This will always generate unique passwords for every different domain you use.
एक्सटेंशन की मूल जानकारी
नाम | Password Hasher |
ID | gobdlinamakamhbeoibfoaakffgmiiik |
आधिकारिक URL | https://chromewebstore.google.com/detail/password-hasher/gobdlinamakamhbeoibfoaakffgmiiik |
विवरण | Converts weak passwords to domain specific strong ones |
फ़ाइल का आकार | 20.68 KB |
स्थापना संख्या | 45 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2015-07-04 |
प्रकाशन तिथि | 2015-07-03 |
रेटिंग | 4.00/5 कुल 1 रेटिंग्स |
डेवलपर | Arnab |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Password Hasher", "short_name": "Hasher", "description": "Converts weak passwords to domain specific strong ones", "version": "1.1", "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "permissions": [ "activeTab", "storage" ], "author": "Arnab Bose" } |