Side-by-side diff view in Github

Adds the option to view diffs side-by-side in Github

O que é Side-by-side diff view in Github?

Side-by-side diff view in Github é uma extensão do Chrome desenvolvida por smike, e sua principal característica é "Adds the option to view diffs side-by-side in Github".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Side-by-side diff view in Github

Baixe arquivos de extensão Side-by-side diff view in 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

                        This extension will transform the diff view on Github to a side-by-side view. Just load a commit page and click the "Show Side-By-Side Diffs" button.

Things that work:
  - Switch between side-by-side and unified diffs
  - Previous comments are shown
  - New comments can be added to any line, but they look funky until you reload.

Found a bug? Have a feature you'd like but isn't working? Please contribute at http://github.com/smike/diffhub.                    

Informações Básicas da Extensão

Nome Side-by-side diff view in Github Side-by-side diff view in Github
ID ihmhmdmhllhleioijdeoocgoddjckbcd
URL Oficial https://chromewebstore.google.com/detail/side-by-side-diff-view-in/ihmhmdmhllhleioijdeoocgoddjckbcd
Descrição Adds the option to view diffs side-by-side in Github
Tamanho do Arquivo 51.96 KB
Contagem de Instalações 118
Versão Atual 1.0.1
Última Atualização 2013-03-26
Data de Publicação 2013-03-26
Classificação 2.40/5 Total de 10 Avaliações
Desenvolvedor smike
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://github.com/smike/diffhub
Idiomas Suportados en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Side-by-side diff view in Github",
    "version": "1.0.1",
    "description": "Adds the option to view diffs side-by-side in Github",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "secrets.js",
            "bg.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery-1.9.1.min.js",
                "content.js"
            ],
            "css": [
                "lib\/diffhub.css"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}