Password visibility toggle
Allows user to reveal their own passwords on input fields via context menu.
Τι είναι το Password visibility toggle;
Το Password visibility toggle είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον codeberg30, και η κύρια λειτουργία του είναι "Allows user to reveal their own passwords on input fields via context menu.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Password visibility toggle
Λήψη αρχείων επέκτασης Password visibility toggle σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Allows users to toggle the visibility of any passwords they have allowed google chrome to store for them by adding an item to the context menu. Users can right click on INPUT fields that have been obfuscated and select the "show password" option from the context menu. The password can be hidden again by right clicking the password field and choosing "hide password". That's it! This is a very simple extension and the code is up on github if you want to view it.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Password visibility toggle |
ID | iogkeonlaimdggmffjapaidkcfplenbi |
Επίσημο URL | https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi |
Περιγραφή | Allows user to reveal their own passwords on input fields via context menu. |
Μέγεθος Αρχείου | 8.46 KB |
Αριθμός Εγκαταστάσεων | 505 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2016-10-20 |
Ημερομηνία Δημοσίευσης | 2016-10-20 |
Προγραμματιστής | codeberg30 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/codeberg30/password-visibility-toggle-chrome-extension |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Password visibility toggle", "version": "1.0", "description": "Allows user to reveal their own passwords on input fields via context menu.", "manifest_version": 2, "icons": { "128": "password_visibility_toggle.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "contextMenus" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end", "all_frames": true } ] } |