Input Cursor Focus

Focuses cursor in first text input if none is focused.

Input Cursor Focusคืออะไร?

Input Cursor Focus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Krzysztof Wróbel และคุณลักษณะหลักของมันคือ "Focuses cursor in first text input if none is focused."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Input Cursor Focus

ดาวน์โหลดไฟล์ส่วนขยาย Input Cursor Focus ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Input Cursor Focus Input Cursor Focus
ID hnhplmcglkomfmoapojflionoibodhla
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/input-cursor-focus/hnhplmcglkomfmoapojflionoibodhla
คำอธิบาย Focuses cursor in first text input if none is focused.
ขนาดไฟล์ 20.78 KB
จำนวนการติดตั้ง 1,864
เวอร์ชันปัจจุบัน 0.1.2
อัปเดตครั้งล่าสุด 2012-08-21
วันที่เผยแพร่ 2012-08-21
คะแนน 4.08/5 รวมทั้งหมด 24 คะแนน
ผู้พัฒนา Krzysztof Wróbel
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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'"
}