Password Viewer

View saved password of web applications

Password Viewer란 무엇입니까?

Password Viewer은(는) suprit shah에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View saved password of web applications"입니다.

확장 프로그램 스크린샷

Password Viewer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}