Indent by Tab Key

Insert space indent on pushing tab key

What is Indent by Tab Key?

Indent by Tab Key is a Chrome extension developed by eduidl, and its main feature is "Insert space indent on pushing tab key".

Download Indent by Tab Key Extension CRX File

Download Indent by Tab Key extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Indent by Tab Key Indent by Tab Key
ID keokpaahghbmjbllhgoilmoihaapgjki
Official URL https://chrome.google.com/webstore/detail/indent-by-tab-key/keokpaahghbmjbllhgoilmoihaapgjki
Description Insert space indent on pushing tab key
File Size 4.63 KB
Installation Count 45
Current Version 1.0
Last Updated 2018-02-16
Publish Date 2018-02-16
Rating 5.00/5 Total 1 Ratings
Developer eduidl
Payment Type free
Supported Languages 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"
    }
}