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是由Thomas Henlich開發的Chrome擴展程式,該擴展的主要功能是“Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass).”。

擴展截圖

screenshot

下載Cycle Input Focus Plus擴展crx文件

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