Copy JIRA Issue Link As Markdown icon

Copy JIRA Issue Link As Markdown

Extension Actions

How to install Open in Chrome Web Store
CRX ID
ddodimdmkjejnaknifbdadmkefibglco
Description from extension meta

A simple extension to copy a link to the currently open JIRA ticket as formatted markdown

Image from store
Copy JIRA Issue Link As Markdown
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

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})`) ```