Cycle Input Focus Plus
Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass).
What is Cycle Input Focus Plus?
Cycle Input Focus Plus is a Chrome extension developed by Thomas Henlich, and its main feature is "Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass).".
Extension Screenshots
Download Cycle Input Focus Plus Extension CRX File
Download Cycle Input Focus Plus extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Cycle Input Focus Plus |
ID | djdpdobiclbpkahefgndddankfankehk |
Official URL | https://chromewebstore.google.com/detail/cycle-input-focus-plus/djdpdobiclbpkahefgndddankfankehk |
Description | Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass). |
File Size | 6.3 KB |
Installation Count | 217 |
Current Version | 3.0.1 |
Last Updated | 2020-04-30 |
Publish Date | 2020-04-30 |
Rating | 3.00/5 Total 2 Ratings |
Developer | Thomas Henlich |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://henlich.de/datenschutz |
Supported Languages | 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" ] } |