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 là gì?

LOC là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "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…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng LOC

Tải xuống các tệp mở rộng LOC dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên LOC LOC
ID lmhpcmdjibbhkebfmbomehkfccllefnd
URL Chính Thức https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd
Mô tả 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…
Kích Thước Tệp 34.04 KB
Số Lần Cài Đặt 1,032
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2019-06-16
Ngày Phát Hành 2019-06-16
Đánh Giá 2.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}