Password Revealer with Keyboard Shortcut

View saved passwords with the click of a button

Was ist Password Revealer with Keyboard Shortcut?

Password Revealer with Keyboard Shortcut ist eine Chrome-Erweiterung, die von Sleek Panther entwickelt wurde, und ihr Hauptmerkmal ist "View saved passwords with the click of a button".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Password Revealer with Keyboard Shortcut-Erweiterungs-CRX-Datei herunterladen

Laden Sie Password Revealer with Keyboard Shortcut-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

                        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                    

Grundlegende Informationen zur Erweiterung

Name Password Revealer with Keyboard Shortcut Password Revealer with Keyboard Shortcut
ID knbnoooohffobecbjfgemggdbmbhenpo
Offizielle URL https://chromewebstore.google.com/detail/password-revealer-with-ke/knbnoooohffobecbjfgemggdbmbhenpo
Beschreibung View saved passwords with the click of a button
Dateigröße 16.04 KB
Installationsanzahl 433
Aktuelle Version 1.0.3
Letztes Update 2023-10-30
Veröffentlichungsdatum 2020-04-09
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler Sleek Panther
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut
Hilfeseite URL https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut/issues
URL der Datenschutzrichtlinien-Seite https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
Unterstützte Sprachen 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"
    }
}