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'"
}