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'" } |