Memorable Information Rememberer

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

Memorable Information Remembererคืออะไร?

Memorable Information Rememberer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Steve Lacey และคุณลักษณะหลักของมันคือ "Autocomplete memorable information forms, such as those often found on UK online banking"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Memorable Information Rememberer

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    ]
}