Input Cursor Focus
Focuses cursor in first text input if none is focused.
What is Input Cursor Focus?
Input Cursor Focus is a Chrome extension developed by Krzysztof Wróbel, and its main feature is "Focuses cursor in first text input if none is focused.".
Extension Screenshots
Download Input Cursor Focus Extension CRX File
Download Input Cursor Focus extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Input Cursor Focus |
ID | hnhplmcglkomfmoapojflionoibodhla |
Official URL | https://chromewebstore.google.com/detail/input-cursor-focus/hnhplmcglkomfmoapojflionoibodhla |
Description | Focuses cursor in first text input if none is focused. |
File Size | 20.78 KB |
Installation Count | 1,864 |
Current Version | 0.1.2 |
Last Updated | 2012-08-21 |
Publish Date | 2012-08-21 |
Rating | 4.08/5 Total 24 Ratings |
Developer | Krzysztof Wróbel |
Payment Type | free |
Supported Languages | 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'" } |