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 là gì?
Cherry Pie là một tiện ích mở rộng Chrome được phát triển bởi Shlomo Kraus, và tính năng chính của nó là "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…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Cherry Pie
Tải xuống các tệp mở rộng Cherry Pie dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Cherry Pie |
ID | fiaignmlhapejpdfbephokpkjnmnaapo |
URL Chính Thức | https://chromewebstore.google.com/detail/cherry-pie/fiaignmlhapejpdfbephokpkjnmnaapo |
Mô tả | 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… |
Kích Thước Tệp | 767 KB |
Số Lần Cài Đặt | 16 |
Phiên Bản Hiện Tại | 1.6.0 |
Cập Nhật Lần Cuối | 2019-08-21 |
Ngày Phát Hành | 2019-08-21 |
Đánh Giá | 5.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | Shlomo Kraus |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |