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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Cherry Pie एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
}