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…
O que é Cherry Pie?
Cherry Pie é uma extensão do Chrome desenvolvida por Shlomo Kraus, e sua principal característica é "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…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Cherry Pie
Baixe arquivos de extensão Cherry Pie no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Cherry Pie |
ID | fiaignmlhapejpdfbephokpkjnmnaapo |
URL Oficial | https://chromewebstore.google.com/detail/cherry-pie/fiaignmlhapejpdfbephokpkjnmnaapo |
Descrição | 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… |
Tamanho do Arquivo | 767 KB |
Contagem de Instalações | 16 |
Versão Atual | 1.6.0 |
Última Atualização | 2019-08-21 |
Data de Publicação | 2019-08-21 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | Shlomo Kraus |
Tipo de Pagamento | free |
Idiomas Suportados | 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'" } |