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"
    ]
}