Copy JIRA Issue Link As Markdown
A simple extension to copy a link to the currently open JIRA ticket as formatted markdown
What is Copy JIRA Issue Link As Markdown?
Copy JIRA Issue Link As Markdown is a Chrome extension developed by hjdarnel, and its main feature is "A simple extension to copy a link to the currently open JIRA ticket as formatted markdown".
Extension Screenshots
Download Copy JIRA Issue Link As Markdown Extension CRX File
Download Copy JIRA Issue Link As Markdown 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
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`
Extension Basic Information
Name | Copy JIRA Issue Link As Markdown |
ID | ddodimdmkjejnaknifbdadmkefibglco |
Official URL | https://chromewebstore.google.com/detail/copy-jira-issue-link-as-m/ddodimdmkjejnaknifbdadmkefibglco |
Description | A simple extension to copy a link to the currently open JIRA ticket as formatted markdown |
File Size | 10.66 KB |
Installation Count | 134 |
Current Version | 0.0.1 |
Last Updated | 2022-02-05 |
Publish Date | 2022-02-05 |
Developer | hjdarnel |
[email protected] | |
Payment Type | free |
Extension Website | https://www.github.com/hjdarnel/jira-markdown-link |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Copy JIRA Issue Link As Markdown", "author": "hjdarnel", "description": "A simple extension to copy a link to the currently open JIRA ticket as formatted markdown", "version": "0.0.1", "icons": { "16": "logo\/logo-16.png", "48": "logo\/logo-48.png", "128": "logo\/logo-128.png" }, "action": { "default_title": "Copy JIRA Issue Link As Markdown" }, "permissions": [ "activeTab", "clipboardWrite", "scripting" ], "host_permissions": [ "*:\/\/*.atlassian.net\/browse\/*" ], "background": { "service_worker": "background.js" } } |