Pwd#

Pwdhash 1.7 for Chrome. Press ctrl+\ to fill in password fields.

Was ist Pwd#?

Pwd# ist eine Chrome-Erweiterung, die von https://phill84.org entwickelt wurde, und ihr Hauptmerkmal ist "Pwdhash 1.7 for Chrome. Press ctrl+\ to fill in password fields.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Pwd#-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pwd#-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

                        Chrome extension based on PwdHash 1.7

Usage:

- click icon to open popup page and save master password
- press ctrl+\ to fill in all password input on page (including iframes), page doesn’t necessarily need to be completely loaded, hashed password is copied into clipboard so that it's possible to manually paste it in case autofill doesn't work
- double click on a filled password input to show unmasked password                    

Grundlegende Informationen zur Erweiterung

Name Pwd# Pwd#
ID banbidfnbpjlkeegobegafaalkcneihe
Offizielle URL https://chromewebstore.google.com/detail/pwd/banbidfnbpjlkeegobegafaalkcneihe
Beschreibung Pwdhash 1.7 for Chrome. Press ctrl+\ to fill in password fields.
Dateigröße 126 KB
Installationsanzahl 23
Aktuelle Version 0.3
Letztes Update 2012-12-28
Veröffentlichungsdatum 2012-12-28
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler https://phill84.org
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pwd#",
    "version": "0.3",
    "description": "Pwdhash 1.7 for Chrome. Press ctrl+\\  to fill in password fields.",
    "icons": {
        "16": "ico\/hash16.png",
        "48": "ico\/hash48.png",
        "128": "ico\/hash128.png"
    },
    "permissions": [
        "storage",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "pwdhash.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_title": "Pwd#",
        "default_icon": "ico\/hash16.png",
        "default_popup": "popup.html"
    }
}