Password Viewer

View saved password of web applications

Password Viewer là gì?

Password Viewer là một tiện ích mở rộng Chrome được phát triển bởi suprit shah, và tính năng chính của nó là "View saved password of web applications".

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

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

                        We live in a world of web applications. All of these web application have login system. To make our life easy we save our password in browser and with a single click we login on web application thanks to smart browsers. The mechanism works against our memory and we forget passwords of most web app. 

Using this extension you can view your saved password. I often use it. If you're like me you'll love this extension.                    

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

Tên Password Viewer Password Viewer
ID okoenbnfjolgghkpgpcnogfgfgjbhkkd
URL Chính Thức https://chromewebstore.google.com/detail/password-viewer/okoenbnfjolgghkpgpcnogfgfgjbhkkd
Mô tả View saved password of web applications
Kích Thước Tệp 41.64 KB
Số Lần Cài Đặt 593
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-09-27
Ngày Phát Hành 2019-09-25
Nhà Phát Triển suprit shah
Email [email protected]
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",
    "manifest_version": 2,
    "name": "Password Viewer",
    "version": "1.0",
    "description": "View saved password of web applications",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "show-password-128.png"
    },
    "icons": {
        "128": "show-password-128.png",
        "48": "show-password-48.png",
        "16": "show-password-16.png"
    }
}