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