Jira Ticket Link Generator - Cloud Edition
Generates a nice looking link for Jira tickets containing ticket ID, description and link
Jira Ticket Link Generator - Cloud Edition란 무엇입니까?
Jira Ticket Link Generator - Cloud Edition은(는) Junhao Zhang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generates a nice looking link for Jira tickets containing ticket ID, description and link"입니다.
확장 프로그램 스크린샷
Jira Ticket Link Generator - Cloud Edition 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Now here comes the cloud edition of our Jira Ticket Link Generator, works if the Jira instance is on Atlassian Cloud. (If Jira is hosted on-premise instead, try searching for "Jira Ticket Link Generator") This plugin is used for generating a hyperlink for a selected Jira ticket including ticket ID and ticket description, the generated link is copied to clipboard for using. Link can be generated from a selected ticket on sprint board, a ticket detail page, or a selected ticket on search result board. Also we provide another option to generate a list of links for all tickets shown up in search result board. No configuration needed, just plug and play, and enjoy!
확장 프로그램 기본 정보
이름 | Jira Ticket Link Generator - Cloud Edition |
ID | nkoibfljacmncjmdglnollibfmibbfbb |
공식 URL | https://chromewebstore.google.com/detail/jira-ticket-link-generato/nkoibfljacmncjmdglnollibfmibbfbb |
설명 | Generates a nice looking link for Jira tickets containing ticket ID, description and link |
파일 크기 | 538 KB |
설치 횟수 | 28 |
현재 버전 | 1.0.5 |
최근 업데이트 | 2023-12-16 |
출시 날짜 | 2022-05-03 |
평점 | 3.75/5 총 4 개의 평점 |
개발자 | Junhao Zhang |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jira Ticket Link Generator - Cloud Edition", "description": "Generates a nice looking link for Jira tickets containing ticket ID, description and link", "version": "1.0.5", "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+X", "mac": "Alt+X" }, "description": "Generate link for selected ticket on sprint board, selected ticket on search board, or ticket shown in ticket detail page." }, "generate-link-for-all-tickets": { "suggested_key": { "default": "Alt+Z", "mac": "Alt+Z" }, "description": "Generate link for all tickets listed in 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" } } |