Peek a Pass

Quick peek/retrieve a password from your input

Τι είναι το Peek a Pass;

Το Peek a Pass είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Nhac Tat Nguyen, και η κύρια λειτουργία του είναι "Quick peek/retrieve a password from your input".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Peek a Pass

Λήψη αρχείων επέκτασης Peek a Pass σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Feature list:
- Show (reveal) password from your input field when clicking on the extension icon (the password will automatically be hidden again after 4 seconds)
- Right-click to copy the password to the clipboard without exposing it to the UI

Sometimes, you doubt that you typed the wrong password, and delete everything just because of one letter wrong.
This extension will help you unmask and edit it just like normal text, just by clicking on the extension icon.

Nowadays, we have too many passwords to remember, and I know that so many people are using google to save their passwords. And whenever they want to see the saved password (to log in somewhere else), they need to go to the password management page, find the password in a very long table, then input their current Google password just to do a simple thing.
With this extension, just type the URL of the web, go to the log in page and take the password with one click, easy.

This extension is light, totally safe as it has no communication with server.
The opensource is at: https://github.com/NguyenTatNhac/peek-a-pass                    

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

Όνομα Peek a Pass Peek a Pass
ID jpaklegcpejacdlkfiedcakegdmkiekh
Επίσημο URL https://chrome.google.com/webstore/detail/peek-a-pass/jpaklegcpejacdlkfiedcakegdmkiekh
Περιγραφή Quick peek/retrieve a password from your input
Μέγεθος Αρχείου 9.25 KB
Αριθμός Εγκαταστάσεων 72
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2021-03-07
Ημερομηνία Δημοσίευσης 2021-03-07
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Nhac Tat Nguyen
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Peek a Pass",
    "description": "Quick peek\/retrieve a password from your input",
    "author": "Nhac Tat Nguyen",
    "version": "1.1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js",
            "js\/context-menu\/context-menu-handler.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/context-menu\/content-scripts.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "browser_action": {
        "default_icon": "images\/logo_128.png"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus"
    ],
    "icons": {
        "16": "images\/logo_16.png",
        "48": "images\/logo_48.png",
        "128": "images\/logo_128.png"
    }
}