Password visibility toggle
Allows user to reveal their own passwords on input fields via context menu.
Password visibility toggle là gì?
Password visibility toggle là một tiện ích mở rộng Chrome được phát triển bởi codeberg30, và tính năng chính của nó là "Allows user to reveal their own passwords on input fields via context menu.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Password visibility toggle
Tải xuống các tệp mở rộng Password visibility toggle dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Password visibility toggle |
ID | iogkeonlaimdggmffjapaidkcfplenbi |
URL Chính Thức | https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi |
Mô tả | Allows user to reveal their own passwords on input fields via context menu. |
Kích Thước Tệp | 8.46 KB |
Số Lần Cài Đặt | 505 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2016-10-20 |
Ngày Phát Hành | 2016-10-20 |
Nhà Phát Triển | codeberg30 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/codeberg30/password-visibility-toggle-chrome-extension |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |