ShowPassword
Show password when mouse over password fields.
Τι είναι το ShowPassword;
Το ShowPassword είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον a161803398, και η κύρια λειτουργία του είναι "Show password when mouse over password fields.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ShowPassword
Λήψη αρχείων επέκτασης ShowPassword σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | ShowPassword |
ID | bbiclfnbhommljbjcoelobnnnibemabl |
Επίσημο URL | https://chromewebstore.google.com/detail/showpassword/bbiclfnbhommljbjcoelobnnnibemabl |
Περιγραφή | Show password when mouse over password fields. |
Μέγεθος Αρχείου | 13.61 KB |
Αριθμός Εγκαταστάσεων | 170,838 |
Τρέχουσα Έκδοση | 1.2.1 |
Τελευταία Ενημέρωση | 2022-02-11 |
Ημερομηνία Δημοσίευσης | 2017-11-30 |
Αξιολόγηση | 4.54/5 Συνολικά 334 Αξιολογήσεις |
Προγραμματιστής | a161803398 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/a161803398/ShowPassword |
Υποστηριζόμενες Γλώσσες | 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" ] } |