Cycle Input Focus Plus
Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass).
Was ist Cycle Input Focus Plus?
Cycle Input Focus Plus ist eine Chrome-Erweiterung, die von Thomas Henlich entwickelt wurde, und ihr Hauptmerkmal ist "Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass).".
Erweiterungsscreenshots
Cycle Input Focus Plus-Erweiterungs-CRX-Datei herunterladen
Laden Sie Cycle Input Focus Plus-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Cycle Input Focus Plus |
ID | djdpdobiclbpkahefgndddankfankehk |
Offizielle URL | https://chromewebstore.google.com/detail/cycle-input-focus-plus/djdpdobiclbpkahefgndddankfankehk |
Beschreibung | Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass). |
Dateigröße | 6.3 KB |
Installationsanzahl | 217 |
Aktuelle Version | 3.0.1 |
Letztes Update | 2020-04-30 |
Veröffentlichungsdatum | 2020-04-30 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | Thomas Henlich |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://henlich.de/datenschutz |
Unterstützte Sprachen | 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" ] } |