Show Hide Passwords
A browser action to reveal your saved passwords.
Cos'è Show Hide Passwords?
Show Hide Passwords è un'estensione di Chrome sviluppata da akilawickramasekara, e la sua funzione principale è "A browser action to reveal your saved passwords.".
Scarica il file CRX dell'estensione Show Hide Passwords
Scarica i file di estensione Show Hide Passwords 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
This App will allow you to show saved passwords in the browser..
Informazioni di Base sull'Estensione
Nome | Show Hide Passwords |
ID | dakfaecjbjjojelpglfahpbibcgagbnj |
URL Ufficiale | https://chromewebstore.google.com/detail/show-hide-passwords/dakfaecjbjjojelpglfahpbibcgagbnj |
Descrizione | A browser action to reveal your saved passwords. |
Dimensione del File | 53.56 KB |
Conteggio Installazioni | 13 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2018-01-27 |
Data di Pubblicazione | 2018-01-27 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | akilawickramasekara |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Show Hide Passwords", "version": "1.1", "description": "A browser action to reveal your saved passwords.", "browser_action": { "default_title": "Show My Passwords", "default_icon": "padlock-4-16.png" }, "icons": { "16": "padlock-4-16.png", "48": "padlock-4-48.png", "128": "padlock-4-256.png" }, "content_scripts": [ { "js": [ "jquery-3.3.1.min.js", "script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "background": { "scripts": [ "jquery-3.3.1.min.js", "script.js" ], "persistent": false }, "manifest_version": 2, "web_accessible_resources": [ "jquery-3.3.1.min.js", "script.js" ], "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |