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
官方網址 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
電子郵箱 [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"
    }
}