Password visibility toggle
Allows user to reveal their own passwords on input fields via context menu.
Vad är Password visibility toggle?
Password visibility toggle är en Chrome-tillägg utvecklad av codeberg30, och dess huvudfunktion är "Allows user to reveal their own passwords on input fields via context menu.".
Tilläggsskärmbilder
Ladda ner Password visibility toggle-förlängningens CRX-fil
Ladda ner Password visibility toggle-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Password visibility toggle |
ID | iogkeonlaimdggmffjapaidkcfplenbi |
Officiell webbadress | https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi |
Beskrivning | Allows user to reveal their own passwords on input fields via context menu. |
Filstorlek | 8.46 KB |
Antal Installationer | 505 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2016-10-20 |
Publiceringsdatum | 2016-10-20 |
Utvecklare | codeberg30 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/codeberg30/password-visibility-toggle-chrome-extension |
Stödda Språk | 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 } ] } |