Reveal Password

Reveals password on mouse hover

Reveal Password là gì?

Reveal Password là một tiện ích mở rộng Chrome được phát triển bởi sumeet, và tính năng chính của nó là "Reveals password on mouse hover".

Ả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 Password

Tải xuống các tệp mở rộng Reveal Password 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

                        Aren't you tired of typing the wrong password again and again. Worry no more Reveal Password extension is here to save you from typo while entering the password. Reveal password helps you see what you have typed by hovering over a password field.

Enable and disable Reveal Password by clicking on the reveal password icon on the top bar.                    

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

Tên Reveal Password Reveal Password
ID nikhhhcfmpjghejdmkpchggibdpcpoao
URL Chính Thức https://chrome.google.com/webstore/detail/reveal-password/nikhhhcfmpjghejdmkpchggibdpcpoao
Mô tả Reveals password on mouse hover
Kích Thước Tệp 10.41 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2017-09-04
Ngày Phát Hành 2017-09-04
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển sumeet
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": "Reveal Password ",
    "description": "Reveals password on mouse hover",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "showPassword.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "webNavigation"
    ]
}