Control Space To Indent

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

Wat is Control Space To Indent?

Control Space To Indent is een Chrome-extensie ontwikkeld door jordan314, en de belangrijkste functie is "Insert a tab when you type ctrl-space or other custom keystroke.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Control Space To Indent

Download Control Space To Indent-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Control Space To Indent Control Space To Indent
ID ddnfjabedgflkgaokflccccnlabclgme
Officiële URL https://chrome.google.com/webstore/detail/control-space-to-indent/ddnfjabedgflkgaokflccccnlabclgme
Beschrijving Insert a tab when you type ctrl-space or other custom keystroke.
Bestandsgrootte 46.87 KB
Aantal Installaties 77
Huidige Versie 0.52
Laatst Bijgewerkt 2015-05-18
Publicatiedatum 2015-05-18
Beoordeling 4.00/5 Totaal 1 Beoordelingen
Ontwikkelaar jordan314
Betalingswijze free
Ondersteunde Talen 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"
    }
}