Focus on first input (keyboard shortcut)
Adds a shortcut that focuses the cursor on the first text input.
Что такое Focus on first input (keyboard shortcut)?
Focus on first input (keyboard shortcut) - это расширение Chrome, разработанное https://mikesglitch.com, и его основная функция - "Adds a shortcut that focuses the cursor on the first text input.".
Снимки экрана расширения
Скачать файл CRX расширения Focus on first input (keyboard shortcut)
Скачайте файлы расширений Focus on first input (keyboard shortcut) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The default shortcut is 'Alt+S' - it is fully rebindable via the Chrome Extension shortcut menu (chrome://extensions/shortcuts). To view the code you can visit my GitHub repository: https://github.com/mikesglitch/Focus-First-Input
Основная информация о расширении
Название | Focus on first input (keyboard shortcut) |
ID | ofngolgonfcpdanjehfjmcealkclchjg |
Официальный URL | https://chromewebstore.google.com/detail/focus-on-first-input-keyb/ofngolgonfcpdanjehfjmcealkclchjg |
Описание | Adds a shortcut that focuses the cursor on the first text input. |
Размер файла | 5.38 KB |
Количество установок | 388 |
Текущая Версия | 0.1.8 |
Последнее Обновление | 2023-07-26 |
Дата публикации | 2018-05-07 |
Рейтинг | 4.64/5 Всего 11 оценок |
Разработчик | https://mikesglitch.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/mikesglitch/Focus-First-Input |
URL страницы помощи | https://github.com/mikesglitch/Focus-First-Input |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Focus on first input (keyboard shortcut)", "version": "0.1.8", "manifest_version": 2, "description": "Adds a shortcut that focuses the cursor on the first text input.", "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "inj.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "focus-first-input": { "suggested_key": { "default": "Alt+S" }, "description": "Focus on the first input on the screen" } }, "content_security_policy": "script-src 'self'; object-src 'self'" } |