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ファイルをダウンロード

Cherry Pie拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単に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 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'"
}