Confluence Inline Comments
This extension displays the first inline comment on a confluence page
Confluence Inline Commentsคืออะไร?
Confluence Inline Comments เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wd.cristian และคุณลักษณะหลักของมันคือ "This extension displays the first inline comment on a confluence page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Confluence Inline Comments
ดาวน์โหลดไฟล์ส่วนขยาย Confluence Inline Comments ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension displays the first inline comment on a confluence page. Added a small bug fix to avoid double scroll. - Version 4 adapts the code to the new editor's version.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Confluence Inline Comments |
ID | hpfpfnjedfphnnfdfklkbejachlfoeog |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog |
คำอธิบาย | This extension displays the first inline comment on a confluence page |
ขนาดไฟล์ | 14.21 KB |
จำนวนการติดตั้ง | 55 |
เวอร์ชันปัจจุบัน | 0.4 |
อัปเดตครั้งล่าสุด | 2020-02-20 |
วันที่เผยแพร่ | 2020-02-20 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | wd.cristian |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Confluence Inline Comments", "version": "0.4", "manifest_version": 2, "description": "This extension displays the first inline comment on a confluence page", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.atlassian.net\/*" ], "js": [ "fixDoubleBar.js" ], "run_at": "document_end" } ], "permissions": [ "activeTab" ] } |