Jira Ticket Link Generator - Cloud Edition
Generates a nice looking link for Jira tickets containing ticket ID, description and link
What is Jira Ticket Link Generator - Cloud Edition?
Jira Ticket Link Generator - Cloud Edition is a Chrome extension developed by Junhao Zhang, and its main feature is "Generates a nice looking link for Jira tickets containing ticket ID, description and link".
Extension Screenshots
Download Jira Ticket Link Generator - Cloud Edition Extension CRX File
Download Jira Ticket Link Generator - Cloud Edition extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Jira Ticket Link Generator - Cloud Edition |
ID | nkoibfljacmncjmdglnollibfmibbfbb |
Official URL | https://chromewebstore.google.com/detail/jira-ticket-link-generato/nkoibfljacmncjmdglnollibfmibbfbb |
Description | Generates a nice looking link for Jira tickets containing ticket ID, description and link |
File Size | 538 KB |
Installation Count | 28 |
Current Version | 1.0.5 |
Last Updated | 2023-12-16 |
Publish Date | 2022-05-03 |
Rating | 3.75/5 Total 4 Ratings |
Developer | Junhao Zhang |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |