ShowPasswords

Gives the user a simple way to show and copy passwords of an input type password field.

ShowPasswords là gì?

ShowPasswords là một tiện ích mở rộng Chrome được phát triển bởi https://kaletsch.tech, và tính năng chính của nó là "Gives the user a simple way to show and copy passwords of an input type password field.".

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

screenshot
screenshot
screenshot

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

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

                        ShowPasswords is a Chrome Extension that allows to easily access passwords from input fields.

The extensions replaces the input type attribute password with text in an active tab and vice versa. It can also extract passwords in a textarea field which allows simple copying.

ShowPasswords source code is released under MIT License and available at GitHub.                    

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

Tên ShowPasswords ShowPasswords
ID hjelhmgihhbonhfncmoblamoenjcppej
URL Chính Thức https://chromewebstore.google.com/detail/showpasswords/hjelhmgihhbonhfncmoblamoenjcppej
Mô tả Gives the user a simple way to show and copy passwords of an input type password field.
Kích Thước Tệp 47.5 KB
Số Lần Cài Đặt 313
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2018-08-03
Ngày Phát Hành 2018-08-03
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://kaletsch.tech
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": "ShowPasswords",
    "short_name": "ShowPasswords",
    "version": "0.1",
    "description": "Gives the user a simple way to show and copy passwords of an input type password field.",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "kaletsch.tech GmbH ",
    "homepage_url": "https:\/\/github.com\/alexka\/showpasswords",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "thirdParty\/jquery-3.3.1.min.js",
                "main.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}