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…

Vad är LOC?

LOC är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "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…".

Tilläggsskärmbilder

screenshot

Ladda ner LOC-förlängningens CRX-fil

Ladda ner LOC-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn LOC LOC
ID lmhpcmdjibbhkebfmbomehkfccllefnd
Officiell webbadress https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd
Beskrivning 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…
Filstorlek 34.04 KB
Antal Installationer 1,032
Aktuell Version 0.2
Senast Uppdaterad 2019-06-16
Publiceringsdatum 2019-06-16
Betyg 2.50/5 Totalt 2 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk 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"
        ]
    }
}