GitHub Custom Tab Size

Make tab indented code more readable by allowing you to set a custom tab size

ما هو GitHub Custom Tab Size؟

GitHub Custom Tab Size هو إضافة Chrome تم تطويرها بواسطة lukechilds، والميزة الرئيسية لها هي "Make tab indented code more readable by allowing you to set a custom tab size".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة GitHub Custom Tab Size

قم بتنزيل ملفات الامتداد GitHub Custom Tab Size بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Set custom tab size for code view on GitHub.com. The tab size setting is synced across all Chrome browsers you're logged into.                    

معلومات أساسية عن التمديد

الاسم GitHub Custom Tab Size GitHub Custom Tab Size
ID jcjfkmdkcaopkioccnpbhiemfcmpnghe
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-custom-tab-size/jcjfkmdkcaopkioccnpbhiemfcmpnghe
الوصف Make tab indented code more readable by allowing you to set a custom tab size
حجم الملف 22.35 KB
عدد التثبيتات 557
النسخة الحالية 1.1.0
آخر تحديث 2019-05-06
تاريخ النشر 2019-05-06
تقييم 4.30/5 مجموع تقييمات 10
المطور lukechilds
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/lukechilds/github-custom-tab-size
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Custom Tab Size",
    "version": "1.1.0",
    "icons": {
        "256": "icon.png"
    },
    "description": "Make tab indented code more readable by allowing you to set a custom tab size",
    "homepage_url": "https:\/\/github.com\/lukechilds\/github-custom-tab-size",
    "manifest_version": 2,
    "minimum_chrome_version": "36",
    "browser_action": {
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*\/*",
                "https:\/\/gist.github.com\/*\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ]
}