Show Password
Forgotten your password? Show password of password field. Source Code can be found in Github.
Cos'è Show Password?
Show Password è un'estensione di Chrome sviluppata da Simon Meraner, e la sua funzione principale è "Forgotten your password? Show password of password field. Source Code can be found in Github.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Show Password
Scarica i file di estensione Show Password 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
                        Show hidden passwords in password fields. Right-click to a password field and click "Show Password"                     Informazioni di Base sull'Estensione
| Nome |   |  
| ID | aglbjehgamjplgcjkcembamkcaclecmi | 
| URL Ufficiale | https://chromewebstore.google.com/detail/show-password/aglbjehgamjplgcjkcembamkcaclecmi | 
| Descrizione | Forgotten your password? Show password of password field. Source Code can be found in Github. | 
| Dimensione del File | 10.79 KB | 
| Conteggio Installazioni | 28 | 
| Versione Corrente | 1.0.1 | 
| Ultimo Aggiornamento | 2019-04-18 | 
| Data di Pubblicazione | 2019-04-14 | 
| Sviluppatore | Simon Meraner | 
| Tipo di Pagamento | free | 
| Lingue Supportate | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show Password",
    "author": "smeraner",
    "version": "1.0.1",
    "description": "Forgotten your password? Show password of password field. Source Code can be found in Github.",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "icons": {
        "16": "images\/img16.png",
        "32": "images\/img32.png",
        "48": "images\/img48.png",
        "128": "images\/img128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}  |  |