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…

Apa itu LOC?

LOC adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "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…".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi LOC

Unduh file ekstensi LOC dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama LOC LOC
ID lmhpcmdjibbhkebfmbomehkfccllefnd
URL Resmi https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd
Deskripsi 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…
Ukuran File 34.04 KB
Jumlah Instalasi 1,032
Versi Saat Ini 0.2
Terakhir Diperbarui 2019-06-16
Tanggal Publikasi 2019-06-16
Penilaian 2.50/5 Total 2 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
        ]
    }
}