Input Cursor Focus
Focuses cursor in first text input if none is focused.
Apa itu Input Cursor Focus?
Input Cursor Focus adalah ekstensi Chrome yang dikembangkan oleh Krzysztof Wróbel, dan fitur utamanya adalah "Focuses cursor in first text input if none is focused.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Input Cursor Focus
Unduh file ekstensi Input Cursor Focus dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Input Cursor Focus |
ID | hnhplmcglkomfmoapojflionoibodhla |
URL Resmi | https://chromewebstore.google.com/detail/input-cursor-focus/hnhplmcglkomfmoapojflionoibodhla |
Deskripsi | Focuses cursor in first text input if none is focused. |
Ukuran File | 20.78 KB |
Jumlah Instalasi | 1,864 |
Versi Saat Ini | 0.1.2 |
Terakhir Diperbarui | 2012-08-21 |
Tanggal Publikasi | 2012-08-21 |
Penilaian | 4.08/5 Total 24 Penilaian |
Pengembang | Krzysztof Wróbel |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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'" } |