Control Space To Indent

Insert a tab when you type ctrl-space or other custom keystroke.

Control Space To Indentとは何ですか?

Control Space To Indentはjordan314によって開発されたChromeの拡張機能で、その主な機能は「Insert a tab when you type ctrl-space or other custom keystroke.」です。

拡張機能のスクリーンショット

screenshot

Control Space To Indent拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Control Space to Indent acts as a Tab key for webmail and other online forms. When you press a custom keystroke (control-space by default), it inserts a customizable amount (default 8) of spaces into the email, textarea or input you're typing in.

Version 0.52 includes a bugfix that would prevent using the spacebar from checking checkboxes. This previously worked with gmail but they've changed their code, so a gmail-compatible fix is upcoming.                    

拡張機能の基本情報

名前 Control Space To Indent Control Space To Indent
ID ddnfjabedgflkgaokflccccnlabclgme
公式URL https://chrome.google.com/webstore/detail/control-space-to-indent/ddnfjabedgflkgaokflccccnlabclgme
説明 Insert a tab when you type ctrl-space or other custom keystroke.
ファイルサイズ 46.87 KB
インストール数 77
現在のバージョン 0.52
最終更新日 2015-05-18
公開日 2015-05-18
評価 4.00/5 合計 1 レビュー
開発者 jordan314
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Control Space To Indent",
    "short_name": "control_space_to_tab",
    "description": "Insert a tab when you type ctrl-space or other custom keystroke.",
    "version": "0.52",
    "permissions": [
        "tabs",
        "",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                ""
            ],
            "js": [
                "jquery.min.js",
                "ctrlspacetab.js",
                "popupoptions.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Control Tab To Indent"
    }
}