Tab Grabber

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

Tab Grabber क्या है?

Tab Grabber SiteKickr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to insert tab characters into textarea fields (multi-line text fields)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tab Grabber एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        }
    ]
}