Indent by Tab Key

Insert space indent on pushing tab key

Indent by Tab Keyとは何ですか?

Indent by Tab Keyはeduidlによって開発されたChromeの拡張機能で、その主な機能は「Insert space indent on pushing tab key」です。

Indent by Tab Key拡張機能のCRXファイルをダウンロード

Indent by Tab Key拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Indent by Tab Key Indent by Tab Key
ID keokpaahghbmjbllhgoilmoihaapgjki
公式URL https://chrome.google.com/webstore/detail/indent-by-tab-key/keokpaahghbmjbllhgoilmoihaapgjki
説明 Insert space indent on pushing tab key
ファイルサイズ 4.63 KB
インストール数 45
現在のバージョン 1.0
最終更新日 2018-02-16
公開日 2018-02-16
評価 5.00/5 合計 1 レビュー
開発者 eduidl
支払い方法 free
対応言語 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"
    }
}