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"
        ]
    }
}