Cycle Input Focus Plus

Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass).

Cycle Input Focus Plusคืออะไร?

Cycle Input Focus Plus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Thomas Henlich และคุณลักษณะหลักของมันคือ "Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass)."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cycle Input Focus Plus

ดาวน์โหลดไฟล์ส่วนขยาย Cycle Input Focus Plus ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Cycle through (text) inputs with a keycombo. Find and focus username and password fields (works great with external password managers, like KeePass). Based on the Cycle Input Focus add-on by P.C Spruijtenburg

This addon provides the following functions (shortcuts are configurable):
- goto previous text input field
- goto next text input field
- goto first login (user name) field (a field preceding a password field)
- goto next password field
- goto next login (user name) field
- goto first password field
- goto first (starting) text input field                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Cycle Input Focus Plus Cycle Input Focus Plus
ID djdpdobiclbpkahefgndddankfankehk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/cycle-input-focus-plus/djdpdobiclbpkahefgndddankfankehk
คำอธิบาย Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass).
ขนาดไฟล์ 6.3 KB
จำนวนการติดตั้ง 217
เวอร์ชันปัจจุบัน 3.0.1
อัปเดตครั้งล่าสุด 2020-04-30
วันที่เผยแพร่ 2020-04-30
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Thomas Henlich
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://henlich.de/datenschutz
ภาษาที่รองรับ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "author": "Thomas Henlich",
    "version": "3.0.1",
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "previousInput": {
            "suggested_key": {
                "default": "Alt+Shift+X"
            },
            "description": "__MSG_functionPrevious__"
        },
        "nextInput": {
            "suggested_key": {
                "default": "Alt+Shift+C"
            },
            "description": "__MSG_functionNext__"
        },
        "firstUserNameInput": {
            "suggested_key": {
                "default": "Alt+Shift+U"
            },
            "description": "__MSG_functionFirstLogin__"
        },
        "cyclePWInput": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            },
            "description": "__MSG_functionCyclePassword__"
        },
        "cycleUserNameInput": {
            "description": "__MSG_functionCycleLogin__"
        },
        "firstPWInput": {
            "description": "__MSG_functionFirstPassword__"
        },
        "firstInput": {
            "description": "__MSG_functionFirst__"
        }
    },
    "permissions": [
        "activeTab"
    ]
}