Password visibility toggle
Allows user to reveal their own passwords on input fields via context menu.
Was ist Password visibility toggle?
Password visibility toggle ist eine Chrome-Erweiterung, die von codeberg30 entwickelt wurde, und ihr Hauptmerkmal ist "Allows user to reveal their own passwords on input fields via context menu.".
Erweiterungsscreenshots
Password visibility toggle-Erweiterungs-CRX-Datei herunterladen
Laden Sie Password visibility toggle-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Password visibility toggle |
ID | iogkeonlaimdggmffjapaidkcfplenbi |
Offizielle URL | https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi |
Beschreibung | Allows user to reveal their own passwords on input fields via context menu. |
Dateigröße | 8.46 KB |
Installationsanzahl | 505 |
Aktuelle Version | 1.0 |
Letztes Update | 2016-10-20 |
Veröffentlichungsdatum | 2016-10-20 |
Entwickler | codeberg30 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/codeberg30/password-visibility-toggle-chrome-extension |
Unterstützte Sprachen | 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 } ] } |