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 je LOC?

LOC je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „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…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření LOC

Stáhněte si soubory rozšíření LOC ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název LOC LOC
ID lmhpcmdjibbhkebfmbomehkfccllefnd
Oficiální URL https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd
Popis 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…
Velikost souboru 34.04 KB
Počet instalací 1,032
Aktuální Verze 0.2
Poslední Aktualizace 2019-06-16
Datum Vydání 2019-06-16
Hodnocení 2.50/5 Celkem 2 Hodnocení
Vývojář Unknown
Typ Platby free
Podporované Jazyky 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"
        ]
    }
}