Jira Snippet
Jira Snippet: Quick copy add-on for customizable issue data. Integrates with Jira Cloud on Chrome, Firefox, Edge.
A simple extension to copy a link to the currently open JIRA ticket as formatted markdown
按已采集快照查看用户数变化。
展示最近 7 日窗口内已采集的评分快照,辅助判断近期评分是否稳定。
同口径展示 1 天、7 天、30 天的绝对增长与增长率。
查看发布时间、版本、支持语言、最近更新和抓取时间。
查看插件说明、主要功能和适用场景。
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`
查看最近评论和评分分布。
商店综合星级:4.5。下方星级分布只统计已同步评论正文;如果某个插件只有公开分数、没有真实评论正文,这里可能为空。
查看 Chrome 商店详情页中的相关产品。
Jira Snippet: Quick copy add-on for customizable issue data. Integrates with Jira Cloud on Chrome, Firefox, Edge.
Adds a 'Copy Issue Title' button to 'Browse' and 'Issues' Jira pages
Extension to copy your Jira issue title and URL.
Copy a Jira link with the Ticket Number and Title, ready to be pasted into Outlook or Websites.
Quick copy JIRA ticket links with customizable format. Perfect for sharing tickets in emails and chats.
Generates a nice looking link for Jira tickets containing ticket ID, description and link
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})`) ```