Input Cursor Focus

Focuses cursor in first text input if none is focused.

Input Cursor Focus là gì?

Input Cursor Focus là một tiện ích mở rộng Chrome được phát triển bởi Krzysztof Wróbel, và tính năng chính của nó là "Focuses cursor in first text input if none is focused.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Input Cursor Focus

Tải xuống các tệp mở rộng Input Cursor Focus dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Input Cursor Focus Input Cursor Focus
ID hnhplmcglkomfmoapojflionoibodhla
URL Chính Thức https://chromewebstore.google.com/detail/input-cursor-focus/hnhplmcglkomfmoapojflionoibodhla
Mô tả Focuses cursor in first text input if none is focused.
Kích Thước Tệp 20.78 KB
Số Lần Cài Đặt 1,864
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2012-08-21
Ngày Phát Hành 2012-08-21
Đánh Giá 4.08/5 Tổng số 24 Đánh Giá
Nhà Phát Triển Krzysztof Wróbel
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}