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…

Wat is LOC?

LOC is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "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…".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie LOC

Download LOC-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam LOC LOC
ID lmhpcmdjibbhkebfmbomehkfccllefnd
Officiële URL https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd
Beschrijving 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…
Bestandsgrootte 34.04 KB
Aantal Installaties 1,032
Huidige Versie 0.2
Laatst Bijgewerkt 2019-06-16
Publicatiedatum 2019-06-16
Beoordeling 2.50/5 Totaal 2 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}