Password Hasher
Converts weak passwords to domain specific strong ones
Qu'est-ce que Password Hasher ?
Password Hasher est une extension Chrome développée par Arnab, et sa fonction principale est "Converts weak passwords to domain specific strong ones".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Password Hasher
Téléchargez les fichiers d'extension Password Hasher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Password Hasher |
ID | gobdlinamakamhbeoibfoaakffgmiiik |
URL Officiel | https://chromewebstore.google.com/detail/password-hasher/gobdlinamakamhbeoibfoaakffgmiiik |
Description | Converts weak passwords to domain specific strong ones |
Taille du Fichier | 20.68 KB |
Nombre d'Installations | 45 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2015-07-04 |
Date de Publication | 2015-07-03 |
Évaluation | 4.00/5 Total 1 Évaluations |
Développeur | Arnab |
Type de Paiement | free |
Langues Prises en Charge | 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" } |