Password Revealer with Keyboard Shortcut

View saved passwords with the click of a button

What is Password Revealer with Keyboard Shortcut?

Password Revealer with Keyboard Shortcut is a Chrome extension developed by Sleek Panther, and its main feature is "View saved passwords with the click of a button".

Extension Screenshots

screenshot
screenshot
screenshot

Download Password Revealer with Keyboard Shortcut Extension CRX File

Download Password Revealer with Keyboard Shortcut extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Password Revealer with Keyboard Shortcut Password Revealer with Keyboard Shortcut
ID knbnoooohffobecbjfgemggdbmbhenpo
Official URL https://chromewebstore.google.com/detail/password-revealer-with-ke/knbnoooohffobecbjfgemggdbmbhenpo
Description View saved passwords with the click of a button
File Size 16.04 KB
Installation Count 433
Current Version 1.0.3
Last Updated 2023-10-30
Publish Date 2020-04-09
Rating 3.67/5 Total 3 Ratings
Developer Sleek Panther
Email [email protected]
Payment Type free
Extension Website https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut
Help Page URL https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut/issues
Privacy Policy Page URL https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
Supported Languages 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"
    }
}