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
官方網址 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'"
}