LGTM for Github

This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.

LGTM for Github là gì?

LGTM for Github là một tiện ích mở rộng Chrome được phát triển bởi https://thetechtime.com, và tính năng chính của nó là "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.".

Ả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 LGTM for Github

Tải xuống các tệp mở rộng LGTM for Github 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

                        Source code: https://github.com/geekrax/lgtm-chrome-extension                    

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

Tên LGTM for Github LGTM for Github
ID ckjpjogecpcibagiggbejclbihmochpn
URL Chính Thức https://chromewebstore.google.com/detail/lgtm-for-github/ckjpjogecpcibagiggbejclbihmochpn
Mô tả This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.
Kích Thước Tệp 32.36 KB
Số Lần Cài Đặt 19
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2017-03-18
Ngày Phát Hành 2017-03-17
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://thetechtime.com
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": "LGTM for Github",
    "description": "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.",
    "version": "1.1",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content\/content.js"
            ]
        }
    ],
    "options_page": "options\/options.html",
    "permissions": [
        "https:\/\/github.com\/",
        "storage"
    ]
}