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
官方網址 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"
        ]
    }
}