LGTM for Github

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

What is LGTM for Github?

LGTM for Github is a Chrome extension developed by https://thetechtime.com, and its main feature is "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.".

Extension Screenshots

screenshot

Download LGTM for Github Extension CRX File

Download LGTM for Github extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name LGTM for Github LGTM for Github
ID ckjpjogecpcibagiggbejclbihmochpn
Official URL https://chromewebstore.google.com/detail/lgtm-for-github/ckjpjogecpcibagiggbejclbihmochpn
Description This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.
File Size 32.36 KB
Installation Count 19
Current Version 1.1
Last Updated 2017-03-18
Publish Date 2017-03-17
Rating 5.00/5 Total 1 Ratings
Developer https://thetechtime.com
Payment Type free
Supported Languages 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"
    ]
}