Password Show Hide

This extension will allow to see store password on password field by adding a eye icon with input field

Was ist Password Show Hide?

Password Show Hide ist eine Chrome-Erweiterung, die von GreeLogix entwickelt wurde, und ihr Hauptmerkmal ist "This extension will allow to see store password on password field by adding a eye icon with input field".

Erweiterungsscreenshots

screenshot

Password Show Hide-Erweiterungs-CRX-Datei herunterladen

Laden Sie Password Show Hide-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

                        Sometimes, we need to get/copy the saved password from password saved field data. This extension enable you to turn password field to text field. 
It will add a show link with each password field and on clicking the link it will turn the password visibility to text.                    

Grundlegende Informationen zur Erweiterung

Name Password Show Hide Password Show Hide
ID dkdkinddlfncaenemeelaklfcpggabfd
Offizielle URL https://chromewebstore.google.com/detail/password-show-hide/dkdkinddlfncaenemeelaklfcpggabfd
Beschreibung This extension will allow to see store password on password field by adding a eye icon with input field
Dateigröße 90.27 KB
Installationsanzahl 313
Aktuelle Version 1.3.1
Letztes Update 2023-01-03
Veröffentlichungsdatum 2020-10-20
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler GreeLogix
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://greelogix.com?page_id=6688
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Show Hide",
    "description": "This extension will allow to see store password on password field by adding a eye icon with input field",
    "version": "1.3.1",
    "homepage_url": "https:\/\/github.com\/abuzer",
    "browser_action": {
        "default_icon": "favicon.png",
        "default_popup": "popup.html",
        "default_title": "Passowrd Show\/Hide"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": false,
            "css": [
                "css\/style.css"
            ],
            "js": [
                "scripts\/jquery.min.js",
                "scripts\/content.js"
            ],
            "web_accessible_resources": [
                "jquery.min.js"
            ],
            "run_at": "document_end"
        }
    ]
}