GitHub File Diff

View diffs of files and directories on GitHub.

GitHub File Diff란 무엇입니까?

GitHub File Diff은(는) https://akr.am에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View diffs of files and directories on GitHub."입니다.

확장 프로그램 스크린샷

screenshot

GitHub File Diff 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        To use this extension, go to a file or directory in GitHub and click the **History** button. Then, click on any commit. The extension will override the click to show the diffs of only the relevant files instead of GitHub's default behavior of showing the entire commit's diff. This is especially helpful when a commit is very large and GitHub only shows a partial diff or none at all. To get the regular view, simply refresh the page.                    

확장 프로그램 기본 정보

이름 GitHub File Diff GitHub File Diff
ID lmhbkinmjbfihpkihjdhcagnigpklinh
공식 URL https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh
설명 View diffs of files and directories on GitHub.
파일 크기 354 KB
설치 횟수 153
현재 버전 1.1.9
최근 업데이트 2024-02-04
출시 날짜 2020-03-31
개발자 https://akr.am
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/mohd-akram/github-file-diff/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub File Diff",
    "version": "1.1.9",
    "description": "View diffs of files and directories on GitHub.",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png",
        "256": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "vendor.css"
            ],
            "js": [
                "vendor.js",
                "main.js"
            ]
        }
    ]
}