Password visibility toggle

Allows user to reveal their own passwords on input fields via context menu.

Password visibility toggle란 무엇입니까?

Password visibility toggle은(는) codeberg30에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows user to reveal their own passwords on input fields via context menu."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Allows users to toggle the visibility of any passwords they have allowed google chrome to store for them by adding an item to the context menu. Users can right click on INPUT fields that have been obfuscated and select the "show password" option from the context menu. The password can be hidden again by right clicking the password field and choosing "hide password". That's it! 

This is a very simple extension and the code is up on github if you want to view it.                    

확장 프로그램 기본 정보

이름 Password visibility toggle Password visibility toggle
ID iogkeonlaimdggmffjapaidkcfplenbi
공식 URL https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi
설명 Allows user to reveal their own passwords on input fields via context menu.
파일 크기 8.46 KB
설치 횟수 505
현재 버전 1.0
최근 업데이트 2016-10-20
출시 날짜 2016-10-20
개발자 codeberg30
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/codeberg30/password-visibility-toggle-chrome-extension
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password visibility toggle",
    "version": "1.0",
    "description": "Allows user to reveal their own passwords on input fields via context menu.",
    "manifest_version": 2,
    "icons": {
        "128": "password_visibility_toggle.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}