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…

Was ist LOC?

LOC ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "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…".

Erweiterungsscreenshots

screenshot

LOC-Erweiterungs-CRX-Datei herunterladen

Laden Sie LOC-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name LOC LOC
ID lmhpcmdjibbhkebfmbomehkfccllefnd
Offizielle URL https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd
Beschreibung 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…
Dateigröße 34.04 KB
Installationsanzahl 1,032
Aktuelle Version 0.2
Letztes Update 2019-06-16
Veröffentlichungsdatum 2019-06-16
Bewertung 2.50/5 Insgesamt 2 Bewertungen
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen 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"
        ]
    }
}