Password Revealer with Keyboard Shortcut

View saved passwords with the click of a button

Qu'est-ce que Password Revealer with Keyboard Shortcut ?

Password Revealer with Keyboard Shortcut est une extension Chrome développée par Sleek Panther, et sa fonction principale est "View saved passwords with the click of a button".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Password Revealer with Keyboard Shortcut

Téléchargez les fichiers d'extension Password Revealer with Keyboard Shortcut 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

                        Your browser remembers your password but you don't? Have no fear, it's easy to turn asterisks into text.

Click the Extension icon to reveal passwords

Alt+R Keyboard Shortcut                    

Informations de Base sur l'Extension

Nom Password Revealer with Keyboard Shortcut Password Revealer with Keyboard Shortcut
ID knbnoooohffobecbjfgemggdbmbhenpo
URL Officiel https://chromewebstore.google.com/detail/password-revealer-with-ke/knbnoooohffobecbjfgemggdbmbhenpo
Description View saved passwords with the click of a button
Taille du Fichier 16.04 KB
Nombre d'Installations 433
Version Actuelle 1.0.3
Dernière Mise à Jour 2023-10-30
Date de Publication 2020-04-09
Évaluation 3.67/5 Total 3 Évaluations
Développeur Sleek Panther
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut
URL de la Page d'Aide https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut/issues
URL de la Page de Politique de Confidentialité https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Revealer with Keyboard Shortcut",
    "description": "View saved passwords with the click of a button",
    "version": "1.0.3",
    "version_name": "1.0.3",
    "browser_action": {
        "default_icon": "assets\/icons\/icon16.png",
        "default_title": "Alt+R (Reveal Password)"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "commands": {
        "revealPassword": {
            "suggested_key": {
                "default": "Alt+R"
            },
            "description": "Reveal password in password fields"
        }
    },
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    }
}