PwdHash-PoC port
Pwdhash-PoC 1.0 for Chrome. Automatically generates per-site passwords if you prefix your password with @@ or F2.
Was ist PwdHash-PoC port?
PwdHash-PoC port ist eine Chrome-Erweiterung, die von CyBot entwickelt wurde, und ihr Hauptmerkmal ist "Pwdhash-PoC 1.0 for Chrome. Automatically generates per-site passwords if you prefix your password with @@ or F2.".
Erweiterungsscreenshots
PwdHash-PoC port-Erweiterungs-CRX-Datei herunterladen
Laden Sie PwdHash-PoC port-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension uses the updated PwdHash-PoC (https://cybot.github.io/) which adresses weaknesses in the original version of PwdHash.
Grundlegende Informationen zur Erweiterung
Name | PwdHash-PoC port |
ID | lofhgnhbjellcpcdpkbejffjejhchacj |
Offizielle URL | https://chromewebstore.google.com/detail/pwdhash-poc-port/lofhgnhbjellcpcdpkbejffjejhchacj |
Beschreibung | Pwdhash-PoC 1.0 for Chrome. Automatically generates per-site passwords if you prefix your password with @@ or F2. |
Dateigröße | 274 KB |
Installationsanzahl | 32 |
Aktuelle Version | 0.1.0 |
Letztes Update | 2019-02-19 |
Veröffentlichungsdatum | 2019-02-19 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | CyBot |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/CyBot/chrome-pwdhash-poc |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PwdHash-PoC port", "version": "0.1.0", "manifest_version": 2, "description": "Pwdhash-PoC 1.0 for Chrome. Automatically generates per-site passwords if you prefix your password with @@ or F2.", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "all_frames": true, "js": [ "pwdhash-poc\/chrome\/content\/forge.min.js", "pwdhash-poc\/chrome\/content\/domain-extractor.js", "pwdhash-poc\/chrome\/content\/hashed-password.js", "pwdhash-poc\/chrome\/content\/pwdhash.js", "null.js", "AlternativeDomain.js", "jquery.js", "KeyHooker.js", "Settings.js", "pwdhash-chrome-port.js" ] } ], "options_page": "options.html", "background": { "page": "background.html" }, "icons": { "48": "images\/icon48-stable.png", "128": "images\/icon128-stable.png" }, "permissions": [ "tabs" ], "page_action": { "default_icon": "images\/icon19off.png", "default_title": "PwdHash-PoC", "default_popup": "popup.html" } } |