Password Revealer with Keyboard Shortcut

View saved passwords with the click of a button

Co to jest Password Revealer with Keyboard Shortcut?

Password Revealer with Keyboard Shortcut to rozszerzenie Chrome opracowane przez Sleek Panther, a jego główną funkcją jest „View saved passwords with the click of a button”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Password Revealer with Keyboard Shortcut

Pobierz pliki rozszerzeń Password Revealer with Keyboard Shortcut w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Password Revealer with Keyboard Shortcut Password Revealer with Keyboard Shortcut
ID knbnoooohffobecbjfgemggdbmbhenpo
Oficjalny URL https://chromewebstore.google.com/detail/password-revealer-with-ke/knbnoooohffobecbjfgemggdbmbhenpo
Opis View saved passwords with the click of a button
Rozmiar pliku 16.04 KB
Liczba instalacji 433
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2023-10-30
Data Publikacji 2020-04-09
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper Sleek Panther
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut
Adres URL Strony Pomocy https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut/issues
Adres URL Strony Polityki Prywatności https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
Obsługiwane Języki 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"
    }
}