LGTM for Github

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

O que é LGTM for Github?

LGTM for Github é uma extensão do Chrome desenvolvida por https://thetechtime.com, e sua principal característica é "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão LGTM for Github

Baixe arquivos de extensão LGTM for Github no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome LGTM for Github LGTM for Github
ID ckjpjogecpcibagiggbejclbihmochpn
URL Oficial https://chromewebstore.google.com/detail/lgtm-for-github/ckjpjogecpcibagiggbejclbihmochpn
Descrição This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.
Tamanho do Arquivo 32.36 KB
Contagem de Instalações 19
Versão Atual 1.1
Última Atualização 2017-03-18
Data de Publicação 2017-03-17
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://thetechtime.com
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}