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文件
下载Jira Ticket Link Generator - Cloud Edition扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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! 扩展基本信息
| 名称 | |
| 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"
}
} | |