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文件

下載Memorable Information Rememberer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        - 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
官方網址 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"
    ]
}