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…

什么是LOC?

LOC是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“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

下载LOC扩展crx文件

下载LOC扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 LOC LOC
ID lmhpcmdjibbhkebfmbomehkfccllefnd
官方URL https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd
简介 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…
文件大小 34.04 KB
安装次数 1,032
当前版本 0.2
更新时间 2019-06-16
上架时间 2019-06-16
评分 2.50/5 共2次评分
开发者 Unknown
付费类型 free
支持的语言 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"
        ]
    }
}