Password Revealer with Keyboard Shortcut

View saved passwords with the click of a button

Co je Password Revealer with Keyboard Shortcut?

Password Revealer with Keyboard Shortcut je rozšíření Chrome vyvinuté Sleek Panther, a jeho hlavní funkcí je „View saved passwords with the click of a button“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Password Revealer with Keyboard Shortcut

Stáhněte si soubory rozšíření Password Revealer with Keyboard Shortcut ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Password Revealer with Keyboard Shortcut Password Revealer with Keyboard Shortcut
ID knbnoooohffobecbjfgemggdbmbhenpo
Oficiální URL https://chromewebstore.google.com/detail/password-revealer-with-ke/knbnoooohffobecbjfgemggdbmbhenpo
Popis View saved passwords with the click of a button
Velikost souboru 16.04 KB
Počet instalací 433
Aktuální Verze 1.0.3
Poslední Aktualizace 2023-10-30
Datum Vydání 2020-04-09
Hodnocení 3.67/5 Celkem 3 Hodnocení
Vývojář Sleek Panther
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut
URL Stránky Nápovědy https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut/issues
URL Stránky Zásad Ochrany Soukromí https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
Podporované Jazyky 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"
    }
}