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…

What is LOC?

LOC is a Chrome extension developed by Unknown, and its main feature 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…".

Extension Screenshots

screenshot

Download LOC Extension CRX File

Download LOC extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name LOC LOC
ID lmhpcmdjibbhkebfmbomehkfccllefnd
Official URL https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd
Description 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…
File Size 34.04 KB
Installation Count 1,032
Current Version 0.2
Last Updated 2019-06-16
Publish Date 2019-06-16
Rating 2.50/5 Total 2 Ratings
Developer Unknown
Payment Type free
Supported Languages 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"
        ]
    }
}