Github to Jira
Go from a Github pull request to the corresponding Jira ticket in a click
Github to Jiraคืออะไร?
Github to Jira เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mfalade และคุณลักษณะหลักของมันคือ "Go from a Github pull request to the corresponding Jira ticket in a click"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github to Jira
ดาวน์โหลดไฟล์ส่วนขยาย Github to Jira ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Having to find the Jira ticket for a given Github pull request can be quite annoying. Especially in cases where authors don't include a link to relevant tickets in their PR description.
This extension allows you (as both an author and a reviewer) to go from a given Github pull request to the corresponding Jira ticket in a click without the stress of searching through Jira for the appropriate ticket.
All you have to do is to include ticket ID in your branch name somehow. e.g For a sample ticket POC-42, say you have a branch named POC-42 or POC-42-proof-of-concept or proof-of-POC-42-concept (you get the gist ;)), the extension embeds a link to the Jira ticket on your Github pull request page and you can visit said ticket in a click.
You can totally configure supported ticket prefixes as well as your Atlassian organization url. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | dhnagjladcclacjnccpnibdmkljidnhl |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-to-jira/dhnagjladcclacjnccpnibdmkljidnhl |
| คำอธิบาย | Go from a Github pull request to the corresponding Jira ticket in a click |
| ขนาดไฟล์ | 22.84 KB |
| จำนวนการติดตั้ง | 38 |
| เวอร์ชันปัจจุบัน | 1.0 |
| อัปเดตครั้งล่าสุด | 2020-10-14 |
| วันที่เผยแพร่ | 2020-10-13 |
| คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
| ผู้พัฒนา | mfalade |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/mfalade/github-to-jira |
| URL หน้าช่วยเหลือ | https://github.com/mfalade/github-to-jira/issues |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github to Jira",
"version": "1.0",
"description": "Go from a Github pull request to the corresponding Jira ticket in a click",
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"src\/contentScript\/index.js"
]
}
],
"browser_action": {
"default_title": "Go from a PR to JIRA in a click",
"default_popup": "src\/browserAction\/index.html"
},
"background": {
"scripts": [
"src\/background\/index.js"
]
},
"icons": {
"16": "images\/logo-16x16.png",
"32": "images\/logo-32x32.png"
},
"permissions": [
"webNavigation",
"storage"
],
"web_accessible_resources": [
"config\/index.js"
],
"manifest_version": 2
} | |