Github Expand Diff

A user script for Chrome that allows you to expand the missing lines in a Github diff.

Github Expand Diff là gì?

Github Expand Diff là một tiện ích mở rộng Chrome được phát triển bởi Michael Ridgway, và tính năng chính của nó là "A user script for Chrome that allows you to expand the missing lines in a Github diff.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Github Expand Diff

Tải xuống các tệp mở rộng Github Expand Diff 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

                                            

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

Tên Github Expand Diff Github Expand Diff
ID imakbajpbolcgnkfhhlhipbjppfomlij
URL Chính Thức https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij
Mô tả A user script for Chrome that allows you to expand the missing lines in a Github diff.
Kích Thước Tệp 5.63 KB
Số Lần Cài Đặt 121
Phiên Bản Hiện Tại 0.0.1.6
Cập Nhật Lần Cuối 2014-06-18
Ngày Phát Hành 2014-06-18
Đánh Giá 3.86/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Michael Ridgway
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mridgway/github-expand-diff
URL Trang Trợ Giúp https://github.com/mridgway/github-expand-diff/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Expand Diff",
    "version": "0.0.1.6",
    "description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.com\/*\/*\/pull\/*",
                "https:\/\/*.com\/*\/*\/commit\/*",
                "https:\/\/*.com\/*\/*\/compare\/*"
            ],
            "include_globs": [
                "https:\/\/github.com\/*",
                "https:\/\/github.*.com\/*",
                "https:\/\/git.*.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "github-expand-diff.user.js"
            ]
        }
    ]
}