Partial Password

Inserts (or selects) some characters from a password held in the clipboard (paste buffer)

Partial Password란 무엇입니까?

Partial Password은(는) android.app.coder에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inserts (or selects) some characters from a password held in the clipboard (paste buffer)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Partial Password will take some individual characters from a password in the clipboard (paste buffer) and place them into fields in almost any web page.

Many banking web sites ask you to enter three or four characters from your "memorable information" as part of the log in process, such as the second, seventh, and second to last.

This extension quickly enters the correct characters from the clipboard automatically. It works especially well with a password safe, such as SafeInCloud.

It works on nested frame web pages where other extensions can fail.

How to use:
Copy the password into the clipboard. Click on the text box or dropdown selection where the first character is required. Enter the code into the Partial Password request field for the characters you need and press enter or click on set.

For the code: Use numbers to indicate the characters in the password you require. You can use -0, -1, -2 to indicate last, next to last, second from last, etc. Use a . or / to separate the numbers or one or more *s. *s can also be placed after the final number. Where a . is used as a separator, you will need to click on the next field on the page and press Ctrl-Insert to insert/select the next character. Where a / is used as a separator, Partial Password will concatenate the characters required into one input field.Where *s are used, Partial Password will automatically skip to the next field and insert/select the next character. Use multiple *s to skip over fields. Don't count disabled (greyed out) fields when using multiple *s. You can also place a + after the final number. In this case the form will be submitted after the final character is placed into the last field.

Examples:
1) 3.4.-2
Use the third, fourth, and second to last characters of the password. After the first character has been set, select the next field and press Ctrl-Insert to set
the second field, and repeat for the third field.

2) 7*8*12**
Use the seventh, eight, and twelfth characters of the password. Partial Password will automatically insert all three characters, advancing the field by one for
each character, and finally advance the cursor two fields after the last character is set.

3) 2*4*5+
Use the second, fourth, and fifth characters of the password. Partial Password will automatically advancing the field by one each time. After the last character has
been set, Partial Password will submit the form.

4) 1/2/7*
Use the first, second, and seventh characters of the password. Partial Password will concatenate the characters into the input field and then advance the cursor to the next field.

The field cursor will not be moved unless you specify *s at the end of your request code.

When selecting from a drop down list, Partial Password ignores any space surrounding the options, as many web pages add space there. First a search for an exact match of the character is made. If none is found the options are searched again ignoring case.

Version History:
1.2)
Added the ability to use / in the request to place more than one character in the same input field.
Added this version history. 
1.1)
Added the ability to use + at the end of the request so the form is submitted when the fields have been set.                    

확장 프로그램 기본 정보

이름 Partial Password Partial Password
ID bfoopkkilihkjnhflgghboohppdbdjcp
공식 URL https://chromewebstore.google.com/detail/partial-password/bfoopkkilihkjnhflgghboohppdbdjcp
설명 Inserts (or selects) some characters from a password held in the clipboard (paste buffer)
파일 크기 21.01 KB
설치 횟수 19
현재 버전 1.2.2
최근 업데이트 2017-06-17
출시 날짜 2017-06-17
평점 4.50/5 총 4 개의 평점
개발자 android.app.coder
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "minimum_chrome_version": "41",
    "name": "Partial Password",
    "description": "Inserts (or selects) some characters from a password held in the clipboard (paste buffer)",
    "version": "1.2.2",
    "author": "Stephen John Waring",
    "browser_action": {
        "default_title": "Partial Password",
        "default_icon": {
            "16": "icon16.png",
            "19": "icon19.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "clipboardRead",
        "storage",
        "webNavigation"
    ],
    "commands": {
        "continue-partial-password": {
            "suggested_key": {
                "default": "Ctrl+Insert"
            },
            "description": "Continue partial password"
        }
    },
    "icons": {
        "16": "icon16.png",
        "19": "icon19.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}