Password Revealer with Keyboard Shortcut

View saved passwords with the click of a button

Vad är Password Revealer with Keyboard Shortcut?

Password Revealer with Keyboard Shortcut är en Chrome-tillägg utvecklad av Sleek Panther, och dess huvudfunktion är "View saved passwords with the click of a button".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Password Revealer with Keyboard Shortcut-förlängningens CRX-fil

Ladda ner Password Revealer with Keyboard Shortcut-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Password Revealer with Keyboard Shortcut Password Revealer with Keyboard Shortcut
ID knbnoooohffobecbjfgemggdbmbhenpo
Officiell webbadress https://chromewebstore.google.com/detail/password-revealer-with-ke/knbnoooohffobecbjfgemggdbmbhenpo
Beskrivning View saved passwords with the click of a button
Filstorlek 16.04 KB
Antal Installationer 433
Aktuell Version 1.0.3
Senast Uppdaterad 2023-10-30
Publiceringsdatum 2020-04-09
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare Sleek Panther
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut
Hjälpsida URL https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut/issues
URL till Sekretesspolicy Sidan https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
Stödda Språk 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"
    }
}