Input Cursor Focus
Focuses cursor in first text input if none is focused.
Was ist Input Cursor Focus?
Input Cursor Focus ist eine Chrome-Erweiterung, die von Krzysztof Wróbel entwickelt wurde, und ihr Hauptmerkmal ist "Focuses cursor in first text input if none is focused.".
Erweiterungsscreenshots
Input Cursor Focus-Erweiterungs-CRX-Datei herunterladen
Laden Sie Input Cursor Focus-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
Automatically focuses text input on websites allowing you to immediately write without using mouse. E.g. on Amazon.com cursor is focused on search text input.
Grundlegende Informationen zur Erweiterung
Name | Input Cursor Focus |
ID | hnhplmcglkomfmoapojflionoibodhla |
Offizielle URL | https://chromewebstore.google.com/detail/input-cursor-focus/hnhplmcglkomfmoapojflionoibodhla |
Beschreibung | Focuses cursor in first text input if none is focused. |
Dateigröße | 20.78 KB |
Installationsanzahl | 1,864 |
Aktuelle Version | 0.1.2 |
Letztes Update | 2012-08-21 |
Veröffentlichungsdatum | 2012-08-21 |
Bewertung | 4.08/5 Insgesamt 24 Bewertungen |
Entwickler | Krzysztof Wróbel |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Input Cursor Focus", "version": "0.1.2", "manifest_version": 2, "description": "Focuses cursor in first text input if none is focused.", "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "inj.js" ] } ], "background": { "scripts": [ "bg.js" ] }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |