Cherry Pie

This extension adds a button to Github's Pull Request page that extracts files from one branch and stage them into a new one. That…

Cherry Pie란 무엇입니까?

Cherry Pie은(는) Shlomo Kraus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds a button to Github's Pull Request page that extracts files from one branch and stage them into a new one. That…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Cherry Pie 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension adds a button to Github's Pull Request page that extracts files from one branch and stage them into a new one. That way you can submit PRs with minimum relevant changes, even if you didn't plan ahead.

But why?
Honestly, you’ve worked hard on that feature, but when you opened the pull request you can clearly see it would've made more sense to split it into multiple smaller updates, each with its own PR.

Since your commit history is unreadable, you can't use git cherry-pick and wish you could go back in time and turn it into something that plays nicely in git log.

Now you can.                    

확장 프로그램 기본 정보

이름 Cherry Pie Cherry Pie
ID fiaignmlhapejpdfbephokpkjnmnaapo
공식 URL https://chromewebstore.google.com/detail/cherry-pie/fiaignmlhapejpdfbephokpkjnmnaapo
설명 This extension adds a button to Github's Pull Request page that extracts files from one branch and stage them into a new one. That…
파일 크기 767 KB
설치 횟수 16
현재 버전 1.6.0
최근 업데이트 2019-08-21
출시 날짜 2019-08-21
평점 5.00/5 총 5 개의 평점
개발자 Shlomo Kraus
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cherry Pie",
    "version": "1.6.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "hot-reload.js"
        ]
    },
    "browser_action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content.bundle.js"
            ]
        }
    ],
    "icons": {
        "128": "cherry-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'"
}