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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
        ]
    }
}