Password Revealer with Keyboard Shortcut

View saved passwords with the click of a button

Password Revealer with Keyboard Shortcut là gì?

Password Revealer with Keyboard Shortcut là một tiện ích mở rộng Chrome được phát triển bởi Sleek Panther, và tính năng chính của nó là "View saved passwords with the click of a button".

Ả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 Password Revealer with Keyboard Shortcut

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

                        Your browser remembers your password but you don't? Have no fear, it's easy to turn asterisks into text.

Click the Extension icon to reveal passwords

Alt+R Keyboard Shortcut                    

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

Tên Password Revealer with Keyboard Shortcut Password Revealer with Keyboard Shortcut
ID knbnoooohffobecbjfgemggdbmbhenpo
URL Chính Thức https://chromewebstore.google.com/detail/password-revealer-with-ke/knbnoooohffobecbjfgemggdbmbhenpo
Mô tả View saved passwords with the click of a button
Kích Thước Tệp 16.04 KB
Số Lần Cài Đặt 433
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2023-10-30
Ngày Phát Hành 2020-04-09
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Sleek Panther
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut
URL Trang Trợ Giúp https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut/issues
URL Trang Chính Sách Bảo Mật https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Revealer with Keyboard Shortcut",
    "description": "View saved passwords with the click of a button",
    "version": "1.0.3",
    "version_name": "1.0.3",
    "browser_action": {
        "default_icon": "assets\/icons\/icon16.png",
        "default_title": "Alt+R (Reveal Password)"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "commands": {
        "revealPassword": {
            "suggested_key": {
                "default": "Alt+R"
            },
            "description": "Reveal password in password fields"
        }
    },
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    }
}