Password Viewer

View saved password of web applications

Password Viewerとは何ですか?

Password Viewerはsuprit shahによって開発されたChromeの拡張機能で、その主な機能は「View saved password of web applications」です。

拡張機能のスクリーンショット

Password Viewer拡張機能のCRXファイルをダウンロード

Password Viewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        We live in a world of web applications. All of these web application have login system. To make our life easy we save our password in browser and with a single click we login on web application thanks to smart browsers. The mechanism works against our memory and we forget passwords of most web app. 

Using this extension you can view your saved password. I often use it. If you're like me you'll love this extension.                    

拡張機能の基本情報

名前 Password Viewer Password Viewer
ID okoenbnfjolgghkpgpcnogfgfgjbhkkd
公式URL https://chromewebstore.google.com/detail/password-viewer/okoenbnfjolgghkpgpcnogfgfgjbhkkd
説明 View saved password of web applications
ファイルサイズ 41.64 KB
インストール数 593
現在のバージョン 1.0
最終更新日 2019-09-27
公開日 2019-09-25
開発者 suprit shah
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Viewer",
    "version": "1.0",
    "description": "View saved password of web applications",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "show-password-128.png"
    },
    "icons": {
        "128": "show-password-128.png",
        "48": "show-password-48.png",
        "16": "show-password-16.png"
    }
}