Description from extension meta
A simple extension to copy a link to the currently open JIRA ticket as formatted markdown
Image from store
Description from store
Copy a link to the current JIRA ticket in an easy-to-share markdown format.
For example: `[TEST-3301](https://mycompany.atlassian.net/browse/TEST-3301) My test ticket`
Latest reviews
- (2025-03-26) Denis Tsyganov: Almost exeactily what i looking for. The only issue exists here: in case issue summary contains ']' it will make this link incorrectly. Example: Jira issue JIRA-500 [prefix] issue description Generated text: [JIRA-500] [prefix](https://jira.url/browse/JIRA-500) issue description I have fixed it locally with updating regular expression in line 4 like ```js .replace(/^\[[\w-]+\]/, (match) => `${match}(${url})`) ```