Side-by-side diff view in Github

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

Τι είναι το Side-by-side diff view in Github;

Το Side-by-side diff view in Github είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον smike, και η κύρια λειτουργία του είναι "Adds the option to view diffs side-by-side in Github".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Side-by-side diff view in Github

Λήψη αρχείων επέκτασης Side-by-side diff view in Github σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Side-by-side diff view in Github Side-by-side diff view in Github
ID ihmhmdmhllhleioijdeoocgoddjckbcd
Επίσημο URL https://chromewebstore.google.com/detail/side-by-side-diff-view-in/ihmhmdmhllhleioijdeoocgoddjckbcd
Περιγραφή Adds the option to view diffs side-by-side in Github
Μέγεθος Αρχείου 51.96 KB
Αριθμός Εγκαταστάσεων 118
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2013-03-26
Ημερομηνία Δημοσίευσης 2013-03-26
Αξιολόγηση 2.40/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής smike
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://github.com/smike/diffhub
Υποστηριζόμενες Γλώσσες 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'"
}