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…

Hvad er LOC?

LOC er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "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…".

Udvidelsesskærmbilleder

screenshot

Download LOC-udvidelses-CRX-fil

Download LOC-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn LOC LOC
ID lmhpcmdjibbhkebfmbomehkfccllefnd
Officiel URL https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd
Beskrivelse 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…
Filstørrelse 34.04 KB
Antal Installationer 1,032
Nuværende Version 0.2
Senest Opdateret 2019-06-16
Udgivelsesdato 2019-06-16
Bedømmelse 2.50/5 Samlet 2 Bedømmelser
Udvikler Unknown
Betalingsmetode free
Understøttede Sprog 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"
        ]
    }
}