Indent by Tab Key

Insert space indent on pushing tab key

Co to jest Indent by Tab Key?

Indent by Tab Key to rozszerzenie Chrome opracowane przez eduidl, a jego główną funkcją jest „Insert space indent on pushing tab key”.

Pobierz plik CRX rozszerzenia Indent by Tab Key

Pobierz pliki rozszerzeń Indent by Tab Key w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Tabでインデントの挿入およびShift + Tabでインデントの削除が行えるようにするChrome拡張です。
現在、GitHubとQiitaでのみ動きます。                    

Podstawowe informacje o rozszerzeniu

Nazwa Indent by Tab Key Indent by Tab Key
ID keokpaahghbmjbllhgoilmoihaapgjki
Oficjalny URL https://chrome.google.com/webstore/detail/indent-by-tab-key/keokpaahghbmjbllhgoilmoihaapgjki
Opis Insert space indent on pushing tab key
Rozmiar pliku 4.63 KB
Liczba instalacji 45
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2018-02-16
Data Publikacji 2018-02-16
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper eduidl
Typ Płatności free
Obsługiwane Języki ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Indent by Tab Key",
    "description": "Insert space indent on pushing tab key",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/qiita.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Indent by Tab Key"
    }
}