Password Revealer with Keyboard Shortcut

View saved passwords with the click of a button

Hvad er Password Revealer with Keyboard Shortcut?

Password Revealer with Keyboard Shortcut er en Chrome-udvidelse udviklet af Sleek Panther, og dens hovedfunktion er "View saved passwords with the click of a button".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Password Revealer with Keyboard Shortcut-udvidelses-CRX-fil

Download Password Revealer with Keyboard Shortcut-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Password Revealer with Keyboard Shortcut Password Revealer with Keyboard Shortcut
ID knbnoooohffobecbjfgemggdbmbhenpo
Officiel URL https://chromewebstore.google.com/detail/password-revealer-with-ke/knbnoooohffobecbjfgemggdbmbhenpo
Beskrivelse View saved passwords with the click of a button
Filstørrelse 16.04 KB
Antal Installationer 433
Nuværende Version 1.0.3
Senest Opdateret 2023-10-30
Udgivelsesdato 2020-04-09
Bedømmelse 3.67/5 Samlet 3 Bedømmelser
Udvikler Sleek Panther
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut
Hjælpeside-URL https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut/issues
URL til Fortrolighedspolitik Side https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
Understøttede Sprog 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"
    }
}