LGTM for Github

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

Was ist LGTM for Github?

LGTM for Github ist eine Chrome-Erweiterung, die von https://thetechtime.com entwickelt wurde, und ihr Hauptmerkmal ist "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.".

Erweiterungsscreenshots

screenshot

LGTM for Github-Erweiterungs-CRX-Datei herunterladen

Laden Sie LGTM for Github-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name LGTM for Github LGTM for Github
ID ckjpjogecpcibagiggbejclbihmochpn
Offizielle URL https://chromewebstore.google.com/detail/lgtm-for-github/ckjpjogecpcibagiggbejclbihmochpn
Beschreibung This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.
Dateigröße 32.36 KB
Installationsanzahl 19
Aktuelle Version 1.1
Letztes Update 2017-03-18
Veröffentlichungsdatum 2017-03-17
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://thetechtime.com
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}