GitHub SLOC

Display SLOC on GitHub

ما هو GitHub SLOC؟

GitHub SLOC هو إضافة Chrome تم تطويرها بواسطة martianyi، والميزة الرئيسية لها هي "Display SLOC on GitHub".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Display source lines of code on GitHub. See website for more.                    

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

الاسم GitHub SLOC GitHub SLOC
ID fkjjjamhihnjmihibcmdnianbcbccpnn
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-sloc/fkjjjamhihnjmihibcmdnianbcbccpnn
الوصف Display SLOC on GitHub
حجم الملف 826 KB
عدد التثبيتات 470
النسخة الحالية 1.4.0
آخر تحديث 2020-08-20
تاريخ النشر 2018-09-09
تقييم 3.83/5 مجموع تقييمات 6
المطور martianyi
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/martianyi/github-sloc
عنوان صفحة المساعدة https://github.com/martianyi/github-sloc/issues
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub SLOC",
    "version": "1.4.0",
    "description": "Display SLOC on GitHub",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "options.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/inject.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "*:\/\/*.github.com\/*"
    ]
}