LGTM for Github

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

Qu'est-ce que LGTM for Github ?

LGTM for Github est une extension Chrome développée par https://thetechtime.com, et sa fonction principale est "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension LGTM for Github

Téléchargez les fichiers d'extension LGTM for Github au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom LGTM for Github LGTM for Github
ID ckjpjogecpcibagiggbejclbihmochpn
URL Officiel 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.
Taille du Fichier 32.36 KB
Nombre d'Installations 19
Version Actuelle 1.1
Dernière Mise à Jour 2017-03-18
Date de Publication 2017-03-17
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://thetechtime.com
Type de Paiement free
Langues Prises en Charge 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"
    ]
}