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是由smike開發的Chrome擴展程式,該擴展的主要功能是“Adds the option to view diffs side-by-side in Github”。
擴展截圖
下載Side-by-side diff view in Github擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | ihmhmdmhllhleioijdeoocgoddjckbcd |
| 官方網址 | 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'"
} | |