ShowPasswords

Gives the user a simple way to show and copy passwords of an input type password field.

Was ist ShowPasswords?

ShowPasswords ist eine Chrome-Erweiterung, die von https://kaletsch.tech entwickelt wurde, und ihr Hauptmerkmal ist "Gives the user a simple way to show and copy passwords of an input type password field.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

ShowPasswords-Erweiterungs-CRX-Datei herunterladen

Laden Sie ShowPasswords-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

                        ShowPasswords is a Chrome Extension that allows to easily access passwords from input fields.

The extensions replaces the input type attribute password with text in an active tab and vice versa. It can also extract passwords in a textarea field which allows simple copying.

ShowPasswords source code is released under MIT License and available at GitHub.                    

Grundlegende Informationen zur Erweiterung

Name ShowPasswords ShowPasswords
ID hjelhmgihhbonhfncmoblamoenjcppej
Offizielle URL https://chromewebstore.google.com/detail/showpasswords/hjelhmgihhbonhfncmoblamoenjcppej
Beschreibung Gives the user a simple way to show and copy passwords of an input type password field.
Dateigröße 47.5 KB
Installationsanzahl 313
Aktuelle Version 0.1
Letztes Update 2018-08-03
Veröffentlichungsdatum 2018-08-03
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://kaletsch.tech
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ShowPasswords",
    "short_name": "ShowPasswords",
    "version": "0.1",
    "description": "Gives the user a simple way to show and copy passwords of an input type password field.",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "kaletsch.tech GmbH ",
    "homepage_url": "https:\/\/github.com\/alexka\/showpasswords",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "thirdParty\/jquery-3.3.1.min.js",
                "main.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}