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…

Co to jest LOC?

LOC to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „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…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia LOC

Pobierz pliki rozszerzeń LOC w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa LOC LOC
ID lmhpcmdjibbhkebfmbomehkfccllefnd
Oficjalny URL https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd
Opis 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…
Rozmiar pliku 34.04 KB
Liczba instalacji 1,032
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2019-06-16
Data Publikacji 2019-06-16
Ocena 2.50/5 Łącznie 2 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
        ]
    }
}