Reveal

Context menu extension to view auto completed hidden password.

什么是Reveal?

Reveal是由Shiv开发的Chrome扩展程序,该扩展的主要功能是“Context menu extension to view auto completed hidden password.”。

扩展截图

screenshot
screenshot

下载Reveal扩展crx文件

下载Reveal扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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'.                    

扩展基本信息

名称 Reveal Reveal
ID coickbnhchmdngjabciaimhdhnbgnpef
官方URL https://chromewebstore.google.com/detail/reveal/coickbnhchmdngjabciaimhdhnbgnpef
简介 Context menu extension to view auto completed hidden password.
文件大小 182 KB
安装次数 7,788
当前版本 1.0
更新时间 2020-03-03
上架时间 2020-02-29
评分 4.40/5 共5次评分
开发者 Shiv
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
            ]
        }
    ]
}