Control Space To Indent

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

Τι είναι το Control Space To Indent;

Το Control Space To Indent είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jordan314, και η κύρια λειτουργία του είναι "Insert a tab when you type ctrl-space or other custom keystroke.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Control Space To Indent

Λήψη αρχείων επέκτασης 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"
    }
}