LOC

This extension counts the lines of code (LOC) in the current GitHub repo on screen and displays that at the top of the page. This…

ما هو LOC؟

LOC هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "This extension counts the lines of code (LOC) in the current GitHub repo on screen and displays that at the top of the page. This…".

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

screenshot

تحميل ملف CRX للإضافة LOC

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

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

                        This extension counts the lines of code (LOC) in the current GitHub repo on screen and  displays that at the top of the page. This extension only works on the top level page of the repo. That is, https://github.com/organization/repo-name/directory-name will show nothing, but https://github.com/organization/repo-name will show the total LOC for the entire repo.                    

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

الاسم LOC LOC
ID lmhpcmdjibbhkebfmbomehkfccllefnd
عنوان URL الرسمي https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd
الوصف This extension counts the lines of code (LOC) in the current GitHub repo on screen and displays that at the top of the page. This…
حجم الملف 34.04 KB
عدد التثبيتات 1,032
النسخة الحالية 0.2
آخر تحديث 2019-06-16
تاريخ النشر 2019-06-16
تقييم 2.50/5 مجموع تقييمات 2
المطور Unknown
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LOC",
    "version": "0.2",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*\/*"
            ],
            "js": [
                "jquery-core.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}