ShowPassword

Show password when mouse over password fields.

ShowPassword란 무엇입니까?

ShowPassword은(는) a161803398에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show password when mouse over password fields."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Show password when mouse over password fields.

Have you ever deleted whole password just because you typed a single letter wrong ?

Now you can get rid of it.

This extension will show you the password in plain text when cursor is over password fields.

You can also change when to show password in options.

Because many people doubt the security of this extension, I upload it's source code to GitHub. https://github.com/a161803398/ShowPassword

Other mode:
Show password when Double Click.
Show password when On Focus.
Show password when Press Ctrl Key.

What's new in 1.2.1:
Fix extension don't work on some websites that change input type

What's new in 1.1.6:
Bug fix

What's new in 1.1.4:
Fix the bug that google account password don't show.                    

확장 프로그램 기본 정보

이름 ShowPassword ShowPassword
ID bbiclfnbhommljbjcoelobnnnibemabl
공식 URL https://chromewebstore.google.com/detail/showpassword/bbiclfnbhommljbjcoelobnnnibemabl
설명 Show password when mouse over password fields.
파일 크기 13.61 KB
설치 횟수 170,838
현재 버전 1.2.1
최근 업데이트 2022-02-11
출시 날짜 2017-11-30
평점 4.54/5 총 334 개의 평점
개발자 a161803398
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/a161803398/ShowPassword
지원되는 언어 en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ShowPassword",
    "version": "1.2.1",
    "manifest_version": 3,
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "showPassword.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png",
        "64": "icon.png",
        "32": "icon32.png",
        "16": "icon32.png"
    },
    "options_page": "options.html",
    "permissions": [
        "storage"
    ]
}