Tab Grabber

Allows you to insert tab characters into textarea fields (multi-line text fields).

Tab Grabber là gì?

Tab Grabber là một tiện ích mở rộng Chrome được phát triển bởi SiteKickr, và tính năng chính của nó là "Allows you to insert tab characters into textarea fields (multi-line text fields).".

Ả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 Tab Grabber

Tải xuống các tệp mở rộng Tab Grabber 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

                        How many times have you wanted to put a TAB character into a text field, only to find that it simply moves you to the next field?

Whether you're writing code, creating a list of items or creating a multi-column table, the ability to insert TAB characters is one that you won't take for granted.

Tab Grabber tries to be smart about it. If you are attempting to tab through the fields in a form, it won't stop you. But, if you're clearly entering text in a field, it will kick in and allow you to use TAB characters in the field.

Oh, and it also supports the TAB character's arch-enemy, SHIFT+TAB.                    

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

Tên Tab Grabber Tab Grabber
ID caljlpkdljhcjknpcgkchhmaioebongi
URL Chính Thức https://chrome.google.com/webstore/detail/tab-grabber/caljlpkdljhcjknpcgkchhmaioebongi
Mô tả Allows you to insert tab characters into textarea fields (multi-line text fields).
Kích Thước Tệp 7.14 KB
Số Lần Cài Đặt 514
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2014-08-02
Ngày Phát Hành 2014-08-02
Đánh Giá 3.25/5 Tổng số 16 Đánh Giá
Nhà Phát Triển SiteKickr
Loại Thanh Toán free
Trang Web Mở Rộng http://www.sitekickr.com/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Grabber",
    "short_name": "Tab Grabber",
    "description": "Allows you to insert tab characters into textarea fields (multi-line text fields).",
    "version": "1.1",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "tab.js"
            ],
            "run_at": "document_idle"
        }
    ]
}