Hide whitespaces GitHub

Always hide whitespaces in GitHub

ما هو Hide whitespaces GitHub؟

Hide whitespaces GitHub هو إضافة Chrome تم تطويرها بواسطة Arnaud Barré، والميزة الرئيسية لها هي "Always hide whitespaces in GitHub".

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

screenshot

تحميل ملف CRX للإضافة Hide whitespaces GitHub

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

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

                        When navigating to the files tab on pull request reviews, append the url with ?w=1 to enable the  "hide whitespace changes" option                    

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

الاسم Hide whitespaces GitHub Hide whitespaces GitHub
ID nafhbcekbgodfnjpnobmbiajjpgmibnc
عنوان URL الرسمي https://chromewebstore.google.com/detail/hide-whitespaces-github/nafhbcekbgodfnjpnobmbiajjpgmibnc
الوصف Always hide whitespaces in GitHub
حجم الملف 10.26 KB
عدد التثبيتات 57
النسخة الحالية 0.6.0
آخر تحديث 2022-08-09
تاريخ النشر 2020-06-08
تقييم 5.00/5 مجموع تقييمات 2
المطور Arnaud Barré
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/ArnaudBarre/hide-whitespaces-github
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide whitespaces GitHub",
    "version": "0.6.0",
    "description": "Always hide whitespaces in GitHub",
    "permissions": [
        "https:\/\/github.com\/**"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/**"
            ],
            "run_at": "document_start",
            "js": [
                "hide-whitespaces.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    }
}