Branch Name Generator
Branch Name Generator
Branch Name Generatorคืออะไร?
Branch Name Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย klajdipaja และคุณลักษณะหลักของมันคือ "Branch Name Generator"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Branch Name Generator
ดาวน์โหลดไฟล์ส่วนขยาย Branch Name Generator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A helper to that generates branche name for Atlassian or Azure DevOps ticket. As a developer using the git-flow proccess you often need to create branches that have names deriving from the project code, ticket number and title. That is what this extension does, you can fill the form with that data or load all the data from the open Jira/Azure Devops ticket tab using web scrapping, and when you click Generate Branch Name a branch name will be generated that you can copy and use it for your git-flow proccess. Example: Project Code: OGM Ticket number: 1581 Title: Hibernate-OGM Neo4j uses an outdated Bolt driver for remote connections. Generated Branch Name: feature/OGM-1581_HibernateOGM_Neo4j_uses_an_outdated_Bolt_driver_for_remote_connections
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Branch Name Generator |
ID | ponaigcolfgmjneppjpenfobcnkecmao |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/branch-name-generator/ponaigcolfgmjneppjpenfobcnkecmao |
คำอธิบาย | Branch Name Generator |
ขนาดไฟล์ | 925 KB |
จำนวนการติดตั้ง | 24 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2021-10-12 |
วันที่เผยแพร่ | 2021-10-12 |
ผู้พัฒนา | klajdipaja |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Branch Name Generator", "description": "Branch Name Generator", "version": "1.0", "manifest_version": 3, "action": { "default_popup": "index.html", "default_title": "Open" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ ".\/static\/js\/content.js" ] } ], "permissions": [ "activeTab" ], "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png", "512": "logo512.png" } } |