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).".
Снимки экрана расширения
Скачать файл 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 Основная информация о расширении
| Название | |
| 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"
]
} | |