LGTM for Github

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

Cos'è LGTM for Github?

LGTM for Github è un'estensione di Chrome sviluppata da https://thetechtime.com, e la sua funzione principale è "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione LGTM for Github

Scarica i file di estensione LGTM for Github in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome LGTM for Github LGTM for Github
ID ckjpjogecpcibagiggbejclbihmochpn
URL Ufficiale https://chromewebstore.google.com/detail/lgtm-for-github/ckjpjogecpcibagiggbejclbihmochpn
Descrizione This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.
Dimensione del File 32.36 KB
Conteggio Installazioni 19
Versione Corrente 1.1
Ultimo Aggiornamento 2017-03-18
Data di Pubblicazione 2017-03-17
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://thetechtime.com
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}