Jira Snippet
Enhance your Jira experience with the Jira Snippet browser extension
ما هو Jira Snippet؟
Jira Snippet هو إضافة Chrome تم تطويرها بواسطة daemonlibra، والميزة الرئيسية لها هي "Enhance your Jira experience with the Jira Snippet browser extension".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Jira Snippet
قم بتنزيل ملفات الامتداد Jira Snippet بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Makes it possible to copy the jira issue id + title with one button Jira Snippet is a browser extension that streamlines your Jira experience by allowing you to quickly copy issue information in a customizable format. It's easy to configure and enables you to choose what data you want to include when copying, such as issue title, ID, status, and more. The add-on integrates seamlessly with Jira Cloud and is compatible with Chrome, Firefox, Edge and Opera browsers.
معلومات أساسية عن التمديد
الاسم | Jira Snippet |
ID | ncdfcjgiincicfifodndidbdembfhpag |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/jira-snippet/ncdfcjgiincicfifodndidbdembfhpag |
الوصف | Enhance your Jira experience with the Jira Snippet browser extension |
حجم الملف | 33.56 KB |
عدد التثبيتات | 591 |
النسخة الحالية | 2.1 |
آخر تحديث | 2023-08-18 |
تاريخ النشر | 2022-01-31 |
تقييم | 4.40/5 مجموع تقييمات 5 |
المطور | daemonlibra |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/daemonLibra/JiraIssueCopyData |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Jira Snippet", "version": "2.1", "description": "Enhance your Jira experience with the Jira Snippet browser extension", "homepage_url": "https:\/\/github.com\/daemonLibra\/JiraIssueCopyData", "author": "https:\/\/github.com\/daemonLibra", "icons": { "48": "icons\/logo_48.png" }, "action": { "default_icon": "icons\/logo_32.png", "default_title": "Jira Snippet", "default_popup": "popup\/info.html" }, "background": { "service_worker": "scripts\/contextMenu.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.atlassian.net\/*", "*:\/\/*.atlassian.com\/*" ], "js": [ "scripts\/storage-utils.js", "scripts\/settings.js", "scripts\/copybtn.js" ], "run_at": "document_start", "css": [ "css\/style.css" ] } ], "permissions": [ "storage", "contextMenus" ] } |