Control Space To Indent

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

Was ist Control Space To Indent?

Control Space To Indent ist eine Chrome-Erweiterung, die von jordan314 entwickelt wurde, und ihr Hauptmerkmal ist "Insert a tab when you type ctrl-space or other custom keystroke.".

Erweiterungsscreenshots

screenshot

Control Space To Indent-Erweiterungs-CRX-Datei herunterladen

Laden Sie Control Space To Indent-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Control Space To Indent Control Space To Indent
ID ddnfjabedgflkgaokflccccnlabclgme
Offizielle URL https://chrome.google.com/webstore/detail/control-space-to-indent/ddnfjabedgflkgaokflccccnlabclgme
Beschreibung Insert a tab when you type ctrl-space or other custom keystroke.
Dateigröße 46.87 KB
Installationsanzahl 77
Aktuelle Version 0.52
Letztes Update 2015-05-18
Veröffentlichungsdatum 2015-05-18
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler jordan314
Zahlungsart free
Unterstützte Sprachen 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"
    }
}