Tab Grabber

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

O que é Tab Grabber?

Tab Grabber é uma extensão do Chrome desenvolvida por SiteKickr, e sua principal característica é "Allows you to insert tab characters into textarea fields (multi-line text fields).".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Tab Grabber

Baixe arquivos de extensão Tab Grabber no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Tab Grabber Tab Grabber
ID caljlpkdljhcjknpcgkchhmaioebongi
URL Oficial https://chrome.google.com/webstore/detail/tab-grabber/caljlpkdljhcjknpcgkchhmaioebongi
Descrição Allows you to insert tab characters into textarea fields (multi-line text fields).
Tamanho do Arquivo 7.14 KB
Contagem de Instalações 514
Versão Atual 1.1
Última Atualização 2014-08-02
Data de Publicação 2014-08-02
Classificação 3.25/5 Total de 16 Avaliações
Desenvolvedor SiteKickr
Tipo de Pagamento free
Site da Extensão http://www.sitekickr.com/
Idiomas Suportados 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"
        }
    ]
}