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 là gì?

Side-by-side diff view in Github là một tiện ích mở rộng Chrome được phát triển bởi smike, và tính năng chính của nó là "Adds the option to view diffs side-by-side in Github".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Side-by-side diff view in Github

Tải xuống các tệp mở rộng Side-by-side diff view in Github dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Side-by-side diff view in Github Side-by-side diff view in Github
ID ihmhmdmhllhleioijdeoocgoddjckbcd
URL Chính Thức https://chromewebstore.google.com/detail/side-by-side-diff-view-in/ihmhmdmhllhleioijdeoocgoddjckbcd
Mô tả Adds the option to view diffs side-by-side in Github
Kích Thước Tệp 51.96 KB
Số Lần Cài Đặt 118
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2013-03-26
Ngày Phát Hành 2013-03-26
Đánh Giá 2.40/5 Tổng số 10 Đánh Giá
Nhà Phát Triển smike
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://github.com/smike/diffhub
Ngôn Ngữ Được Hỗ Trợ 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'"
}