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).」です。
拡張機能のスクリーンショット
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |