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…

¿Qué es LOC?

LOC es una extensión de Chrome desarrollada por Unknown, y su función principal es "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…".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión LOC

Descarga archivos de extensión LOC en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre LOC LOC
ID lmhpcmdjibbhkebfmbomehkfccllefnd
URL Oficial https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd
Descripción 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…
Tamaño del Archivo 34.04 KB
Cantidad de Instalaciones 1,032
Versión Actual 0.2
Última Actualización 2019-06-16
Fecha de Publicación 2019-06-16
Calificación 2.50/5 Total de 2 Calificaciones
Desarrollador Unknown
Tipo de Pago free
Idiomas Soportados 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"
        ]
    }
}