ShowPasswords

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

Cos'è ShowPasswords?

ShowPasswords è un'estensione di Chrome sviluppata da https://kaletsch.tech, e la sua funzione principale è "Gives the user a simple way to show and copy passwords of an input type password field.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione ShowPasswords

Scarica i file di estensione ShowPasswords in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome ShowPasswords ShowPasswords
ID hjelhmgihhbonhfncmoblamoenjcppej
URL Ufficiale https://chromewebstore.google.com/detail/showpasswords/hjelhmgihhbonhfncmoblamoenjcppej
Descrizione Gives the user a simple way to show and copy passwords of an input type password field.
Dimensione del File 47.5 KB
Conteggio Installazioni 313
Versione Corrente 0.1
Ultimo Aggiornamento 2018-08-03
Data di Pubblicazione 2018-08-03
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://kaletsch.tech
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}