ShowPassword
Show password when mouse over password fields.
Qu'est-ce que ShowPassword ?
ShowPassword est une extension Chrome développée par a161803398, et sa fonction principale est "Show password when mouse over password fields.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ShowPassword
Téléchargez les fichiers d'extension ShowPassword au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Show password when mouse over password fields. Have you ever deleted whole password just because you typed a single letter wrong ? Now you can get rid of it. This extension will show you the password in plain text when cursor is over password fields. You can also change when to show password in options. Because many people doubt the security of this extension, I upload it's source code to GitHub. https://github.com/a161803398/ShowPassword Other mode: Show password when Double Click. Show password when On Focus. Show password when Press Ctrl Key. What's new in 1.2.1: Fix extension don't work on some websites that change input type What's new in 1.1.6: Bug fix What's new in 1.1.4: Fix the bug that google account password don't show.
Informations de Base sur l'Extension
Nom | ShowPassword |
ID | bbiclfnbhommljbjcoelobnnnibemabl |
URL Officiel | https://chromewebstore.google.com/detail/showpassword/bbiclfnbhommljbjcoelobnnnibemabl |
Description | Show password when mouse over password fields. |
Taille du Fichier | 13.61 KB |
Nombre d'Installations | 170,838 |
Version Actuelle | 1.2.1 |
Dernière Mise à Jour | 2022-02-11 |
Date de Publication | 2017-11-30 |
Évaluation | 4.54/5 Total 334 Évaluations |
Développeur | a161803398 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/a161803398/ShowPassword |
Langues Prises en Charge | en,zh-CN,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ShowPassword", "version": "1.2.1", "manifest_version": 3, "default_locale": "en", "description": "__MSG_extension_description__", "content_scripts": [ { "all_frames": true, "js": [ "showPassword.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "icons": { "128": "icon.png", "64": "icon.png", "32": "icon32.png", "16": "icon32.png" }, "options_page": "options.html", "permissions": [ "storage" ] } |