Password Show Hide

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

Qu'est-ce que Password Show Hide ?

Password Show Hide est une extension Chrome développée par GreeLogix, et sa fonction principale est "This extension will allow to see store password on password field by adding a eye icon with input field".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Password Show Hide

Téléchargez les fichiers d'extension Password Show Hide 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

                        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.                    

Informations de Base sur l'Extension

Nom Password Show Hide Password Show Hide
ID dkdkinddlfncaenemeelaklfcpggabfd
URL Officiel https://chromewebstore.google.com/detail/password-show-hide/dkdkinddlfncaenemeelaklfcpggabfd
Description This extension will allow to see store password on password field by adding a eye icon with input field
Taille du Fichier 90.27 KB
Nombre d'Installations 313
Version Actuelle 1.3.1
Dernière Mise à Jour 2023-01-03
Date de Publication 2020-10-20
Évaluation 5.00/5 Total 3 Évaluations
Développeur GreeLogix
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://greelogix.com?page_id=6688
Langues Prises en Charge 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"
        }
    ]
}