Tab Grabber

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

什么是Tab Grabber?

Tab Grabber是由SiteKickr开发的Chrome扩展程序,该扩展的主要功能是“Allows you to insert tab characters into textarea fields (multi-line text fields).”。

扩展截图

screenshot

下载Tab Grabber扩展crx文件

下载Tab Grabber扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Tab Grabber Tab Grabber
ID caljlpkdljhcjknpcgkchhmaioebongi
官方URL https://chrome.google.com/webstore/detail/tab-grabber/caljlpkdljhcjknpcgkchhmaioebongi
简介 Allows you to insert tab characters into textarea fields (multi-line text fields).
文件大小 7.14 KB
安装次数 514
当前版本 1.1
更新时间 2014-08-02
上架时间 2014-08-02
评分 3.25/5 共16次评分
开发者 SiteKickr
付费类型 free
扩展官网 http://www.sitekickr.com/
支持的语言 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"
        }
    ]
}