Github LGTM

Display code review status on github pull requests

O que é Github LGTM?

Github LGTM é uma extensão do Chrome desenvolvida por Friday Inc., e sua principal característica é "Display code review status on github pull requests".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Github LGTM

Baixe arquivos de extensão Github LGTM 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

                        Github pull requests are amazing for managing feature branches. They allow for an open discussion about the changes where anyone can +1 a request they have reviewed and want to have integrated. However there is no easy way to see and count those up or downvotes, especially in a long-winded discussion in a slightly more formal team-wide code review setup.

Now with the Github LGTM extension you can get the review status of pull requests on github at a glance.

Features:

* Display vote summary on pull request list
* Display vote summary on pull request details
* Disable the merge button when there isn't enough votes on a pull request
* Disable the merge button when a pull request is marked as WIP (by adding WIP to its title)
* Change the amount of votes necessary to merge and keywords
* Display vote count on the favicon on pull request defails page

Source code is available at http://github.com/zaki/lgtm                    

Informações Básicas da Extensão

Nome Github LGTM Github LGTM
ID cjppnimohipmnginpfcfghchkbpdaioo
URL Oficial https://chromewebstore.google.com/detail/github-lgtm/cjppnimohipmnginpfcfghchkbpdaioo
Descrição Display code review status on github pull requests
Tamanho do Arquivo 84.26 KB
Contagem de Instalações 33
Versão Atual 1.2.0
Última Atualização 2016-02-01
Data de Publicação 2016-01-31
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Friday Inc.
Tipo de Pagamento free
Site da Extensão http://github.com/zaki/lgtm
Idiomas Suportados en,hu,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.2.0",
    "short_name": "LGTM",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "res\/icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery-2.1.1.min.js",
                "js\/mustache.js",
                "js\/lgtm.js"
            ],
            "css": [
                "css\/lgtm.css"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "css\/lgtm.css",
        "templates\/*",
        "js\/pushstate.js",
        "res\/favicon.png"
    ],
    "options_page": "options\/options.html",
    "default_locale": "en"
}