Password Revealer with Keyboard Shortcut

View saved passwords with the click of a button

Τι είναι το Password Revealer with Keyboard Shortcut;

Το Password Revealer with Keyboard Shortcut είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sleek Panther, και η κύρια λειτουργία του είναι "View saved passwords with the click of a button".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Password Revealer with Keyboard Shortcut

Λήψη αρχείων επέκτασης Password Revealer with Keyboard Shortcut σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Password Revealer with Keyboard Shortcut Password Revealer with Keyboard Shortcut
ID knbnoooohffobecbjfgemggdbmbhenpo
Επίσημο URL https://chromewebstore.google.com/detail/password-revealer-with-ke/knbnoooohffobecbjfgemggdbmbhenpo
Περιγραφή View saved passwords with the click of a button
Μέγεθος Αρχείου 16.04 KB
Αριθμός Εγκαταστάσεων 433
Τρέχουσα Έκδοση 1.0.3
Τελευταία Ενημέρωση 2023-10-30
Ημερομηνία Δημοσίευσης 2020-04-09
Αξιολόγηση 3.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Sleek Panther
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut/issues
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
Υποστηριζόμενες Γλώσσες 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"
    }
}