JIRA ShortCut - BKTB
Copy to clip board Jira issue task-sub task title and Confluence issue title
JIRA ShortCut - BKTBคืออะไร?
JIRA ShortCut - BKTB เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vinanti.thakur และคุณลักษณะหลักของมันคือ "Copy to clip board Jira issue task-sub task title and Confluence issue title"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JIRA ShortCut - BKTB
ดาวน์โหลดไฟล์ส่วนขยาย JIRA ShortCut - BKTB ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension includes additional features to Jira Shortcut originally by mshytikov. Additional features are as follows: 1. Able to copy Confluence page title. 2. Able to copy parent task info (if exists) in Jira ticket. 3. When pasted, the information would be hyperlink enabled text (if text editor supports hyperlink) *** Setup *** 1. Right click extension icon -> options 2. Click 'Add rule' -> Click ‘Jira Default’ for Jira -> ‘Save’ 3. Click ‘Add rule’ -> Click ‘Confluence Default’ for Confluence -> ‘Save’ 4. (Optional) Click 'Add rule' -> Custom Rules (If user wants to customize the rules) -> ‘Save’ 5. Open Jira/Confluence page, user should see the icon enabled in the address bar! Enjoy!!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ajagbdcjimfigmdpbbbpnlkpamhnhpee |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/ajagbdcjimfigmdpbbbpnlkpamhnhpee |
คำอธิบาย | Copy to clip board Jira issue task-sub task title and Confluence issue title |
ขนาดไฟล์ | 9.88 KB |
จำนวนการติดตั้ง | 87 |
เวอร์ชันปัจจุบัน | 5.0.3 |
อัปเดตครั้งล่าสุด | 2016-11-15 |
วันที่เผยแพร่ | 2016-11-15 |
คะแนน | 4.73/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | vinanti.thakur |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JIRA ShortCut - BKTB", "version": "5.0.3", "manifest_version": 2, "description": "Copy to clip board Jira issue task-sub task title and Confluence issue title", "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "js\/content.js" ] } ], "background": { "scripts": [ "js\/config.js", "js\/bg.js" ] }, "permissions": [ "tabs", "webNavigation", "background", "clipboardWrite" ], "page_action": { "default_icon": "icon.png", "default_title": "Copy", "default_popup": "popup.html" }, "commands": { "_execute_page_action": { "suggested_key": { "default": "Ctrl+J" } } }, "options_page": "options.html" } |