Password Revealer with Keyboard Shortcut

View saved passwords with the click of a button

Cos'è Password Revealer with Keyboard Shortcut?

Password Revealer with Keyboard Shortcut è un'estensione di Chrome sviluppata da Sleek Panther, e la sua funzione principale è "View saved passwords with the click of a button".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Password Revealer with Keyboard Shortcut

Scarica i file di estensione Password Revealer with Keyboard Shortcut in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Password Revealer with Keyboard Shortcut Password Revealer with Keyboard Shortcut
ID knbnoooohffobecbjfgemggdbmbhenpo
URL Ufficiale https://chromewebstore.google.com/detail/password-revealer-with-ke/knbnoooohffobecbjfgemggdbmbhenpo
Descrizione View saved passwords with the click of a button
Dimensione del File 16.04 KB
Conteggio Installazioni 433
Versione Corrente 1.0.3
Ultimo Aggiornamento 2023-10-30
Data di Pubblicazione 2020-04-09
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore Sleek Panther
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut
URL della Pagina di Aiuto https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut/issues
URL della Pagina della Politica sulla Privacy https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
Lingue Supportate 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"
    }
}