Jira Ticket Link Generator
Generates a nice looking link for Jira tickets containing ticket ID, description and link
Jira Ticket Link Generatorคืออะไร?
Jira Ticket Link Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Junhao Zhang และคุณลักษณะหลักของมันคือ "Generates a nice looking link for Jira tickets containing ticket ID, description and link"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jira Ticket Link Generator
ดาวน์โหลดไฟล์ส่วนขยาย Jira Ticket Link Generator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This plugin works if your Jira instance is hosted on-premise, if it's hosted on Atlassian Cloud instead, please search for "Jira Ticket Link Generator - Cloud Edition". Generate link for Jira tickets from one click! Generated link is in format of "Ticket ID: Ticket Description" (e.g. TESTPROGRAM-123: Add feature A), which when clicked will navigate you to the Jira ticket. This extension currently supports: 1. Generate a link for a single ticket in: - Selected ticket in Jira sprint board. - Selected ticket in search result page. - Ticket currently being viewed in ticket detail page. 2. Generate links for multiple tickets in: - All tickets shown up in search result page. [Detailed Usage] - Single link option When you are on a sprint board/search result board and have a ticket selected, or you are viewing a ticket in its ticket detail page, click on button "Generate Link For Single Ticket" in extension (or use keyboard shortcut Alt + Q), will generate the link for you and copy to clipboard automatically. - Multiple link option When you are on search result board, click on button "Generate Link For All Tickets In Current Page" in extension (or use keyboard shortcut Alt + W), will generate multiple links corresponding to all the tickets shown in search result page and copy to clipboard. [Notes] 1. For the multiple link option, if your search result includes more than 50 tickets, Jira will display your result in different pages, only tickets in the page you are viewing will be copied in this scenario. 2. For multiple link option, when using it to generate a list of links and trying to copy to Microsoft Word, you'll notice line spacing between those links are different from line spacing between links generated using single link option. That's because Microsoft Word does not treat
between our links from multiple link option as '\r\n'. To resolve this, just hit keyboard "Backspace" and then hit "Enter", which will remove "
" and add "\r\n".
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Jira Ticket Link Generator |
ID | haffinnpjdnmpmhapeoafkdmgdohbdlh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/jira-ticket-link-generato/haffinnpjdnmpmhapeoafkdmgdohbdlh |
คำอธิบาย | Generates a nice looking link for Jira tickets containing ticket ID, description and link |
ขนาดไฟล์ | 61.97 KB |
จำนวนการติดตั้ง | 77 |
เวอร์ชันปัจจุบัน | 1.2.1 |
อัปเดตครั้งล่าสุด | 2023-08-25 |
วันที่เผยแพร่ | 2021-02-16 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Junhao Zhang |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jira Ticket Link Generator", "description": "Generates a nice looking link for Jira tickets containing ticket ID, description and link", "version": "1.2.1", "manifest_version": 3, "author": "Junhao Zhang", "permissions": [ "scripting", "activeTab", "clipboardWrite" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": "\/images\/link_to_jira_48.png" }, "commands": { "generate-link-for-single-ticket": { "suggested_key": { "default": "Alt+Q", "mac": "Alt+Q" }, "description": "Generate link for a specific link from selected ticket on rapid board, selected ticket on search board, or ticket shown in ticket detail page." }, "generate-link-for-all-tickets": { "suggested_key": { "default": "Alt+W", "mac": "Alt+W" }, "description": "Generate link for all tickets shown up in Jira search result board." } }, "icons": { "16": "\/images\/link_to_jira_16.png", "32": "\/images\/link_to_jira_32.png", "48": "\/images\/link_to_jira_48.png", "128": "\/images\/link_to_jira_128.png" } } |