Tab Grabber

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

Cos'è Tab Grabber?

Tab Grabber è un'estensione di Chrome sviluppata da SiteKickr, e la sua funzione principale è "Allows you to insert tab characters into textarea fields (multi-line text fields).".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Tab Grabber

Scarica i file di estensione Tab Grabber in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Tab Grabber Tab Grabber
ID caljlpkdljhcjknpcgkchhmaioebongi
URL Ufficiale https://chrome.google.com/webstore/detail/tab-grabber/caljlpkdljhcjknpcgkchhmaioebongi
Descrizione Allows you to insert tab characters into textarea fields (multi-line text fields).
Dimensione del File 7.14 KB
Conteggio Installazioni 514
Versione Corrente 1.1
Ultimo Aggiornamento 2014-08-02
Data di Pubblicazione 2014-08-02
Valutazione 3.25/5 Totale 16 Valutazioni
Sviluppatore SiteKickr
Tipo di Pagamento free
Sito Web dell'Estensione http://www.sitekickr.com/
Lingue Supportate 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"
        }
    ]
}