Copy JIRA Issue Link As Markdown
A simple extension to copy a link to the currently open JIRA ticket as formatted markdown
ما هو Copy JIRA Issue Link As Markdown؟
Copy JIRA Issue Link As Markdown هو إضافة Chrome تم تطويرها بواسطة hjdarnel، والميزة الرئيسية لها هي "A simple extension to copy a link to the currently open JIRA ticket as formatted markdown".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Copy JIRA Issue Link As Markdown
قم بتنزيل ملفات الامتداد Copy JIRA Issue Link As Markdown بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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`
معلومات أساسية عن التمديد
الاسم | Copy JIRA Issue Link As Markdown |
ID | ddodimdmkjejnaknifbdadmkefibglco |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/copy-jira-issue-link-as-m/ddodimdmkjejnaknifbdadmkefibglco |
الوصف | A simple extension to copy a link to the currently open JIRA ticket as formatted markdown |
حجم الملف | 10.66 KB |
عدد التثبيتات | 134 |
النسخة الحالية | 0.0.1 |
آخر تحديث | 2022-02-05 |
تاريخ النشر | 2022-02-05 |
المطور | hjdarnel |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.github.com/hjdarnel/jira-markdown-link |
اللغات المدعومة | 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" } } |