Side-by-side diff view in Github

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

Was ist Side-by-side diff view in Github?

Side-by-side diff view in Github ist eine Chrome-Erweiterung, die von smike entwickelt wurde, und ihr Hauptmerkmal ist "Adds the option to view diffs side-by-side in Github".

Erweiterungsscreenshots

screenshot

Side-by-side diff view in Github-Erweiterungs-CRX-Datei herunterladen

Laden Sie Side-by-side diff view in Github-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Side-by-side diff view in Github Side-by-side diff view in Github
ID ihmhmdmhllhleioijdeoocgoddjckbcd
Offizielle URL https://chromewebstore.google.com/detail/side-by-side-diff-view-in/ihmhmdmhllhleioijdeoocgoddjckbcd
Beschreibung Adds the option to view diffs side-by-side in Github
Dateigröße 51.96 KB
Installationsanzahl 118
Aktuelle Version 1.0.1
Letztes Update 2013-03-26
Veröffentlichungsdatum 2013-03-26
Bewertung 2.40/5 Insgesamt 10 Bewertungen
Entwickler smike
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://github.com/smike/diffhub
Unterstützte Sprachen 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'"
}