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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    }
}