Focus on first input (keyboard shortcut)
Adds a shortcut that focuses the cursor on the first text input.
Co to jest Focus on first input (keyboard shortcut)?
Focus on first input (keyboard shortcut) to rozszerzenie Chrome opracowane przez https://mikesglitch.com, a jego główną funkcją jest „Adds a shortcut that focuses the cursor on the first text input.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Focus on first input (keyboard shortcut)
Pobierz pliki rozszerzeń Focus on first input (keyboard shortcut) w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Focus on first input (keyboard shortcut) |
ID | ofngolgonfcpdanjehfjmcealkclchjg |
Oficjalny URL | https://chromewebstore.google.com/detail/focus-on-first-input-keyb/ofngolgonfcpdanjehfjmcealkclchjg |
Opis | Adds a shortcut that focuses the cursor on the first text input. |
Rozmiar pliku | 5.38 KB |
Liczba instalacji | 388 |
Aktualna Wersja | 0.1.8 |
Ostatnia Aktualizacja | 2023-07-26 |
Data Publikacji | 2018-05-07 |
Ocena | 4.64/5 Łącznie 11 Oceny |
Deweloper | https://mikesglitch.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/mikesglitch/Focus-First-Input |
Adres URL Strony Pomocy | https://github.com/mikesglitch/Focus-First-Input |
Obsługiwane Języki | 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'" } |