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
官方網址 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"
    ]
}