Control Space To Indent

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

Qu'est-ce que Control Space To Indent ?

Control Space To Indent est une extension Chrome développée par jordan314, et sa fonction principale est "Insert a tab when you type ctrl-space or other custom keystroke.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Control Space To Indent

Téléchargez les fichiers d'extension Control Space To Indent au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Control Space To Indent Control Space To Indent
ID ddnfjabedgflkgaokflccccnlabclgme
URL Officiel https://chrome.google.com/webstore/detail/control-space-to-indent/ddnfjabedgflkgaokflccccnlabclgme
Description Insert a tab when you type ctrl-space or other custom keystroke.
Taille du Fichier 46.87 KB
Nombre d'Installations 77
Version Actuelle 0.52
Dernière Mise à Jour 2015-05-18
Date de Publication 2015-05-18
Évaluation 4.00/5 Total 1 Évaluations
Développeur jordan314
Type de Paiement free
Langues Prises en Charge 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"
    }
}