Password Viewer

This extension will toggle password inputs to text

Password Viewer là gì?

Password Viewer là một tiện ích mở rộng Chrome được phát triển bởi jamesthornlea92, và tính năng chính của nó là "This extension will toggle password inputs to text".

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

                        This extension allows you to change all password fields on the page to normal text fields (allowing you to view/copy passwords).

Simply click the icon to toggle.                    

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

Tên Password Viewer Password Viewer
ID dbjnjcockkopcddldenaclncicnfolhd
URL Chính Thức https://chrome.google.com/webstore/detail/password-viewer/dbjnjcockkopcddldenaclncicnfolhd
Mô tả This extension will toggle password inputs to text
Kích Thước Tệp 7.62 KB
Số Lần Cài Đặt 947
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-07-19
Ngày Phát Hành 2016-07-19
Đánh Giá 4.00/5 Tổng số 10 Đánh Giá
Nhà Phát Triển jamesthornlea92
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Viewer",
    "description": "This extension will toggle password inputs to text",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}