Memorable Information Rememberer

Autocomplete memorable information forms, such as those often found on UK online banking

Memorable Information Rememberer란 무엇입니까?

Memorable Information Rememberer은(는) Steve Lacey에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Autocomplete memorable information forms, such as those often found on UK online banking"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Memorable Information Rememberer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        - Halifax
- Lloyds
- Natwest
- RBS
- …and probably more

If the website you're using doesn't work, it probably won't require much effort
to add the support, but usually an account is required to get to these screens,
feel free to fork the repo at https://github.com/stevelacey/memorable-information-rememberer,
pull requests are more than welcome.

Usage

Section names (as seen in the options UI) refer to the page/section heading
(h1/h2/h3) that describes the section of HTML DOM where the form fields reside.
Usually this is easily guessed, "memorable information" or "pin" for example.

A notable exception is Lloyds, where there is no heading for the memorable
information area, so the main heading on the page has to be used, see the
screenshot for an example. Additionally, Lloyds presents radio options for
choosing a login method ahead of entering memorable information, the extension
therefore clicks any labels containing "memorable info" ahead of autocompletion.

Warnings

If you are setting up an account for the first time, it is advisable to avoid
the autosubmit feature until you are confident the submission is successful,
repeated failed submissions are likely to lock your account.

Memorable Information Rememberer stores data in your Chrome user storage
unencrypted, it is advisable that you make sure any credentials you store are
not used elsewhere and that your account password is strong.                    

확장 프로그램 기본 정보

이름 Memorable Information Rememberer Memorable Information Rememberer
ID concdkcnjhjifbniidekchmgppbjdmkb
공식 URL https://chromewebstore.google.com/detail/memorable-information-rem/concdkcnjhjifbniidekchmgppbjdmkb
설명 Autocomplete memorable information forms, such as those often found on UK online banking
파일 크기 48.18 KB
설치 횟수 93
현재 버전 0.1.2
최근 업데이트 2016-06-30
출시 날짜 2016-06-30
평점 4.33/5 총 3 개의 평점
개발자 Steve Lacey
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/stevelacey/memorable-information-rememberer
도움말 페이지 URL https://github.com/stevelacey/memorable-information-rememberer/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Memorable Information Rememberer",
    "description": "Autocomplete memorable information forms, such as those often found on UK online banking",
    "manifest_version": 2,
    "version": "0.1.2",
    "content_scripts": [
        {
            "js": [
                "autocomplete.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_ui": {
        "chrome_style": true,
        "page": "settings.html"
    },
    "permissions": [
        "",
        "storage"
    ]
}