Copy JIRA ID
Copies JIRA ID.
Copy JIRA IDคืออะไร?
Copy JIRA ID เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://adesh.dev และคุณลักษณะหลักของมันคือ "Copies JIRA ID."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy JIRA ID
ดาวน์โหลดไฟล์ส่วนขยาย Copy JIRA ID ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
TL;DR This extension adds a 'Copy JIRA ID' button (to copy the JIRA ID of course XD) Atlassian JIRA does not have an easy way to copy the JIRA ID. It was easier in old UX, but with the new UX, a lot of garbage is copied as well. They have a copy link button, but that wasn't really useful for me. I wrote this extension out of frustration, which adds a standalone button next to the JIRA ID, to save you from the hassle. Feel free to give it a try. I try my best to keep it updated to latest and also support old versions of JIRA. In case it does not work for you create an issue at https://github.com/AdeshAtole/copy-jira-id/issues/new OR drop a mail
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Copy JIRA ID |
ID | fiokagkoilhjielhjemghmnddbjbplln |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/copy-jira-id/fiokagkoilhjielhjemghmnddbjbplln |
คำอธิบาย | Copies JIRA ID. |
ขนาดไฟล์ | 9 KB |
จำนวนการติดตั้ง | 65 |
เวอร์ชันปัจจุบัน | 0.1.6 |
อัปเดตครั้งล่าสุด | 2021-11-16 |
วันที่เผยแพร่ | 2020-05-19 |
คะแนน | 3.75/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | https://adesh.dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/AdeshAtole/copy-jira-id |
URL หน้าช่วยเหลือ | https://github.com/AdeshAtole/copy-jira-id |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy JIRA ID", "version": "0.1.6", "description": "Copies JIRA ID.", "manifest_version": 2, "content_scripts": [ { "matches": [ "http:\/\/*.atlassian.net\/browse\/*", "https:\/\/*.atlassian.net\/browse\/*", "https:\/\/*.jira.com\/browse\/*" ], "js": [ "contentScript.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "icons": { "128": "icon_128.png" } } |