LGTM for Github

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

什麼是LGTM for Github?

LGTM for Github是由https://thetechtime.com開發的Chrome擴展程式,該擴展的主要功能是“This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.”。

擴展截圖

screenshot

下載LGTM for Github擴展crx文件

下載LGTM for Github擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 LGTM for Github LGTM for Github
ID ckjpjogecpcibagiggbejclbihmochpn
官方網址 https://chromewebstore.google.com/detail/lgtm-for-github/ckjpjogecpcibagiggbejclbihmochpn
簡介 This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.
檔案大小 32.36 KB
安裝次數 19
目前版本 1.1
更新時間 2017-03-18
上架時間 2017-03-17
評分 5.00/5 共 1 次評分
開發者 https://thetechtime.com
付費類型 free
支援的語言 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"
    ]
}