Reveal

Context menu extension to view auto completed hidden password.

Reveal là gì?

Reveal là một tiện ích mở rộng Chrome được phát triển bởi Shiv, và tính năng chính của nó là "Context menu extension to view auto completed hidden password.".

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

screenshot
screenshot

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

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

                        How many times have you forgotten the password saved by google passwords and have to manually logout or request for a new one without knowing how to view the hidden password? 

Reveal will help you make the hidden password visible. Simply right click on the password input field and chose 'Reveal password'.                    

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

Tên Reveal Reveal
ID coickbnhchmdngjabciaimhdhnbgnpef
URL Chính Thức https://chromewebstore.google.com/detail/reveal/coickbnhchmdngjabciaimhdhnbgnpef
Mô tả Context menu extension to view auto completed hidden password.
Kích Thước Tệp 182 KB
Số Lần Cài Đặt 7,788
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-03-03
Ngày Phát Hành 2020-02-29
Đánh Giá 4.40/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Shiv
Email [email protected]
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",
    "description": "Context menu extension to view auto completed hidden password.",
    "version": "1.0",
    "author": "Shivkanthb",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "icons": {
        "16": "images\/eyecon-16x16.png",
        "48": "images\/eyecon-48x48.png",
        "72": "images\/eyecon-72x72.png",
        "128": "images\/eyecon-128x128.png"
    },
    "background": {
        "scripts": [
            "scripts\/event.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/content_script.js"
            ]
        }
    ]
}