Reveal Passwords

Toggle password fields to text fields so you can see what you've typed (or mistyped).

Reveal Passwords là gì?

Reveal Passwords là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Toggle password fields to text fields so you can see what you've typed (or mistyped).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Reveal Passwords

Tải xuống các tệp mở rộng Reveal 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 extension will find all password input fields on a page, and turn them into readable text fields. The icon can be clicked again to reverse the process.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Reveal Passwords Reveal Passwords
ID kbbbdhddofjfncbijifmonfffhkphkhg
URL Chính Thức https://chromewebstore.google.com/detail/reveal-passwords/kbbbdhddofjfncbijifmonfffhkphkhg
Mô tả Toggle password fields to text fields so you can see what you've typed (or mistyped).
Kích Thước Tệp 15.49 KB
Số Lần Cài Đặt 311
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2016-06-12
Ngày Phát Hành 2016-06-11
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ctrl-freaks/reveal-passwords
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reveal Passwords",
    "description": "Toggle password fields to text fields so you can see what you've typed (or mistyped).",
    "version": "1.0.0",
    "short_name": "revealpasswords",
    "minimum_chrome_version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_title": "Reveal Passwords",
        "default_icon": {
            "19": "icons\/inactive-19.png",
            "38": "icons\/inactive-38.png",
            "64": "icons\/inactive-64.png"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "icons": {
        "128": "icons\/inactive-128.png",
        "64": "icons\/inactive-64.png"
    }
}