Show Passwords
This extension transforms password fields into plain text fields.
Show Passwords là gì?
Show Passwords là một tiện ích mở rộng Chrome được phát triển bởi https://www.dahlkemedia.com, và tính năng chính của nó là "This extension transforms password fields into plain text fields.".
Ả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 Show Passwords
Tải xuống các tệp mở rộng Show Passwords 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
Change all password inputs on a page into text inputs so you can easily see the contents of the password field. You no longer need to guess which character may or may not have been wrong and you won't need to start over. NEW in version 1.1: You can now automatically show passwords by checking the box in the popup when clicking on the extension!!!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Show Passwords |
ID | kmbolocfihljheomgjcolimidpeepdig |
URL Chính Thức | https://chromewebstore.google.com/detail/show-passwords/kmbolocfihljheomgjcolimidpeepdig |
Mô tả | This extension transforms password fields into plain text fields. |
Kích Thước Tệp | 6.14 KB |
Số Lần Cài Đặt | 185 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2021-12-20 |
Ngày Phát Hành | 2016-08-31 |
Đánh Giá | 4.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://www.dahlkemedia.com |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Show Passwords", "description": "This extension transforms password fields into plain text fields.", "version": "1.1", "icons": { "19": "icon.png" }, "browser_action": { "default_title": "Show Passwords", "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "showpasswordsauto.js" ], "run_at": "document_end" } ] } |