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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |