Reveal Password

Reveals password on mouse hover

什么是Reveal Password?

Reveal Password是由sumeet开发的Chrome扩展程序,该扩展的主要功能是“Reveals password on mouse hover”。

扩展截图

screenshot

下载Reveal Password扩展crx文件

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

扩展使用说明

                        Aren't you tired of typing the wrong password again and again. Worry no more Reveal Password extension is here to save you from typo while entering the password. Reveal password helps you see what you have typed by hovering over a password field.

Enable and disable Reveal Password by clicking on the reveal password icon on the top bar.                    

扩展基本信息

名称 Reveal Password Reveal Password
ID nikhhhcfmpjghejdmkpchggibdpcpoao
官方URL https://chrome.google.com/webstore/detail/reveal-password/nikhhhcfmpjghejdmkpchggibdpcpoao
简介 Reveals password on mouse hover
文件大小 10.41 KB
安装次数 1,000
当前版本 1.2
更新时间 2017-09-04
上架时间 2017-09-04
评分 3.00/5 共4次评分
开发者 sumeet
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reveal Password ",
    "description": "Reveals password on mouse hover",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "showPassword.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "webNavigation"
    ]
}