Git Diff Flex

Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.

Git Diff Flex란 무엇입니까?

Git Diff Flex은(는) pbarnum에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Git Diff Flex 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension adds a pane bezel between a file's diff to expand or contract a side in an effort to make line more readable.                    

확장 프로그램 기본 정보

이름 Git Diff Flex Git Diff Flex
ID deholaolbodagbifbcaghhmjlbekndec
공식 URL https://chromewebstore.google.com/detail/git-diff-flex/deholaolbodagbifbcaghhmjlbekndec
설명 Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.
파일 크기 17.52 KB
설치 횟수 53
현재 버전 1.0.5
최근 업데이트 2023-06-28
출시 날짜 2018-08-30
평점 5.00/5 총 1 개의 평점
개발자 pbarnum
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/pbarnum/git-diff-flex/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git Diff Flex",
    "version": "1.0.5",
    "description": "Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.",
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "background": {
        "service_scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "css": [
                "git-diff-flex.css"
            ],
            "js": [
                "git-diff-flex.js"
            ]
        }
    ],
    "icons": {
        "128": "icon_128.png"
    },
    "action": {
        "default_title": "Git Diff Flex",
        "default_popup": "options.html"
    },
    "manifest_version": 3
}