Bitbucket Pull Request auto delete branch
Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud.
Bitbucket Pull Request auto delete branchคืออะไร?
Bitbucket Pull Request auto delete branch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hmartos และคุณลักษณะหลักของมันคือ "Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bitbucket Pull Request auto delete branch
ดาวน์โหลดไฟล์ส่วนขยาย Bitbucket Pull Request auto delete branch ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension automatically checks the checkbox to delete the source branch in a Bitbucket Pull Request after merging it into the destination branch. Developers may forget to check this checkbox when creating a Pull Request, leaving the stale merged branches in the remote. This functionality is available as a native configuration in Bitbucket Server, but it is not available in Bitbucket Cloud, so this extension solves that problem.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Bitbucket Pull Request auto delete branch |
ID | iffllgmebelmfdfiiagjgbpjhplobfem |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/bitbucket-pull-request-au/iffllgmebelmfdfiiagjgbpjhplobfem |
คำอธิบาย | Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud. |
ขนาดไฟล์ | 12.89 KB |
จำนวนการติดตั้ง | 440 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2023-01-31 |
วันที่เผยแพร่ | 2023-01-31 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | hmartos |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/hmartos/bitbucket-pull-request-auto-delete-branch |
URL หน้าช่วยเหลือ | https://github.com/hmartos/bitbucket-pull-request-auto-delete-branch/issues |
ภาษาที่รองรับ | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extensionTitle__", "version": "1.0.0", "description": "__MSG_extensionDescription__", "default_locale": "en", "content_scripts": [ { "matches": [ "https:\/\/bitbucket.org\/*\/pull-requests\/new*" ], "js": [ "scripts\/content.js", "utils\/debug.js" ] } ], "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" } } |