TabSize tab-width extension

For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket

ما هو TabSize tab-width extension؟

TabSize tab-width extension هو إضافة Chrome تم تطويرها بواسطة StipJey، والميزة الرئيسية لها هي "For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket".

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

screenshot
screenshot

تحميل ملف CRX للإضافة TabSize tab-width extension

قم بتنزيل ملفات الامتداد TabSize tab-width extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension will allow you to change the width of the tab character. Suitable for any sites, including GitLab, GitHub, BitBucket and others.                    

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

الاسم TabSize tab-width extension TabSize tab-width extension
ID inljipofhnbnafffhllppdcbjapaapnl
عنوان URL الرسمي https://chromewebstore.google.com/detail/tabsize-tab-width-extensi/inljipofhnbnafffhllppdcbjapaapnl
الوصف For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket
حجم الملف 10.62 KB
عدد التثبيتات 96
النسخة الحالية 1.0.0
آخر تحديث 2019-10-03
تاريخ النشر 2019-09-30
تقييم 5.00/5 مجموع تقييمات 1
المطور StipJey
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TabSize tab-width extension",
    "version": "1.0.0",
    "description": "For change width of the tab character in Pull\/Merge Requests on GitHub\/Gitlab\/BitBucket",
    "manifest_version": 2,
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "options_page": "options.html",
    "page_action": {
        "default_popup": "popup.html"
    }
}