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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 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 της επέκτασης Cherry Pie

Λήψη αρχείων επέκτασης 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'"
}