Tab Grabber

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

Qu'est-ce que Tab Grabber ?

Tab Grabber est une extension Chrome développée par SiteKickr, et sa fonction principale est "Allows you to insert tab characters into textarea fields (multi-line text fields).".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Tab Grabber

Téléchargez les fichiers d'extension Tab Grabber au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Tab Grabber Tab Grabber
ID caljlpkdljhcjknpcgkchhmaioebongi
URL Officiel https://chrome.google.com/webstore/detail/tab-grabber/caljlpkdljhcjknpcgkchhmaioebongi
Description Allows you to insert tab characters into textarea fields (multi-line text fields).
Taille du Fichier 7.14 KB
Nombre d'Installations 514
Version Actuelle 1.1
Dernière Mise à Jour 2014-08-02
Date de Publication 2014-08-02
Évaluation 3.25/5 Total 16 Évaluations
Développeur SiteKickr
Type de Paiement free
Site Web de l'Extension http://www.sitekickr.com/
Langues Prises en Charge 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"
        }
    ]
}