ShowPasswords

Gives the user a simple way to show and copy passwords of an input type password field.

Τι είναι το ShowPasswords;

Το ShowPasswords είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://kaletsch.tech, και η κύρια λειτουργία του είναι "Gives the user a simple way to show and copy passwords of an input type password field.".

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

screenshot
screenshot
screenshot

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

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

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

                        ShowPasswords is a Chrome Extension that allows to easily access passwords from input fields.

The extensions replaces the input type attribute password with text in an active tab and vice versa. It can also extract passwords in a textarea field which allows simple copying.

ShowPasswords source code is released under MIT License and available at GitHub.                    

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

Όνομα ShowPasswords ShowPasswords
ID hjelhmgihhbonhfncmoblamoenjcppej
Επίσημο URL https://chromewebstore.google.com/detail/showpasswords/hjelhmgihhbonhfncmoblamoenjcppej
Περιγραφή Gives the user a simple way to show and copy passwords of an input type password field.
Μέγεθος Αρχείου 47.5 KB
Αριθμός Εγκαταστάσεων 313
Τρέχουσα Έκδοση 0.1
Τελευταία Ενημέρωση 2018-08-03
Ημερομηνία Δημοσίευσης 2018-08-03
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://kaletsch.tech
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ShowPasswords",
    "short_name": "ShowPasswords",
    "version": "0.1",
    "description": "Gives the user a simple way to show and copy passwords of an input type password field.",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "kaletsch.tech GmbH ",
    "homepage_url": "https:\/\/github.com\/alexka\/showpasswords",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "thirdParty\/jquery-3.3.1.min.js",
                "main.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}