Jira Ticket Link Generator - Cloud Edition
Generates a nice looking link for Jira tickets containing ticket ID, description and link
Co je Jira Ticket Link Generator - Cloud Edition?
Jira Ticket Link Generator - Cloud Edition je rozšíření Chrome vyvinuté Junhao Zhang, a jeho hlavní funkcí je „Generates a nice looking link for Jira tickets containing ticket ID, description and link“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Jira Ticket Link Generator - Cloud Edition
Stáhněte si soubory rozšíření Jira Ticket Link Generator - Cloud Edition ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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!
Základní Informace o Rozšíření
Název | Jira Ticket Link Generator - Cloud Edition |
ID | nkoibfljacmncjmdglnollibfmibbfbb |
Oficiální URL | https://chromewebstore.google.com/detail/jira-ticket-link-generato/nkoibfljacmncjmdglnollibfmibbfbb |
Popis | Generates a nice looking link for Jira tickets containing ticket ID, description and link |
Velikost souboru | 538 KB |
Počet instalací | 28 |
Aktuální Verze | 1.0.5 |
Poslední Aktualizace | 2023-12-16 |
Datum Vydání | 2022-05-03 |
Hodnocení | 3.75/5 Celkem 4 Hodnocení |
Vývojář | Junhao Zhang |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } } |