Show Hide Passwords
A browser action to reveal your saved passwords.
Show Hide Passwords là gì?
Show Hide Passwords là một tiện ích mở rộng Chrome được phát triển bởi akilawickramasekara, và tính năng chính của nó là "A browser action to reveal your saved passwords.".
Tải xuống tệp CRX của tiện ích mở rộng Show Hide Passwords
Tải xuống các tệp mở rộng Show Hide 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
This App will allow you to show saved passwords in the browser..
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Show Hide Passwords |
ID | dakfaecjbjjojelpglfahpbibcgagbnj |
URL Chính Thức | https://chromewebstore.google.com/detail/show-hide-passwords/dakfaecjbjjojelpglfahpbibcgagbnj |
Mô tả | A browser action to reveal your saved passwords. |
Kích Thước Tệp | 53.56 KB |
Số Lần Cài Đặt | 13 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2018-01-27 |
Ngày Phát Hành | 2018-01-27 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | akilawickramasekara |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Show Hide Passwords", "version": "1.1", "description": "A browser action to reveal your saved passwords.", "browser_action": { "default_title": "Show My Passwords", "default_icon": "padlock-4-16.png" }, "icons": { "16": "padlock-4-16.png", "48": "padlock-4-48.png", "128": "padlock-4-256.png" }, "content_scripts": [ { "js": [ "jquery-3.3.1.min.js", "script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "background": { "scripts": [ "jquery-3.3.1.min.js", "script.js" ], "persistent": false }, "manifest_version": 2, "web_accessible_resources": [ "jquery-3.3.1.min.js", "script.js" ], "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |