Control Space To Indent

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

O que é Control Space To Indent?

Control Space To Indent é uma extensão do Chrome desenvolvida por jordan314, e sua principal característica é "Insert a tab when you type ctrl-space or other custom keystroke.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Control Space To Indent

Baixe arquivos de extensão Control Space To Indent no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Control Space To Indent Control Space To Indent
ID ddnfjabedgflkgaokflccccnlabclgme
URL Oficial https://chrome.google.com/webstore/detail/control-space-to-indent/ddnfjabedgflkgaokflccccnlabclgme
Descrição Insert a tab when you type ctrl-space or other custom keystroke.
Tamanho do Arquivo 46.87 KB
Contagem de Instalações 77
Versão Atual 0.52
Última Atualização 2015-05-18
Data de Publicação 2015-05-18
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor jordan314
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}