Side-by-side diff view in Github

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

Vad är Side-by-side diff view in Github?

Side-by-side diff view in Github är en Chrome-tillägg utvecklad av smike, och dess huvudfunktion är "Adds the option to view diffs side-by-side in Github".

Tilläggsskärmbilder

screenshot

Ladda ner Side-by-side diff view in Github-förlängningens CRX-fil

Ladda ner Side-by-side diff view in Github-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Side-by-side diff view in Github Side-by-side diff view in Github
ID ihmhmdmhllhleioijdeoocgoddjckbcd
Officiell webbadress https://chromewebstore.google.com/detail/side-by-side-diff-view-in/ihmhmdmhllhleioijdeoocgoddjckbcd
Beskrivning Adds the option to view diffs side-by-side in Github
Filstorlek 51.96 KB
Antal Installationer 118
Aktuell Version 1.0.1
Senast Uppdaterad 2013-03-26
Publiceringsdatum 2013-03-26
Betyg 2.40/5 Totalt 10 Betyg
Utvecklare smike
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://github.com/smike/diffhub
Stödda Språk 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'"
}