Confluence Inline Comments
This extension displays the first inline comment on a confluence page
Apa itu Confluence Inline Comments?
Confluence Inline Comments adalah ekstensi Chrome yang dikembangkan oleh wd.cristian, dan fitur utamanya adalah "This extension displays the first inline comment on a confluence page".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Confluence Inline Comments
Unduh file ekstensi Confluence Inline Comments dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Confluence Inline Comments |
ID | hpfpfnjedfphnnfdfklkbejachlfoeog |
URL Resmi | https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog |
Deskripsi | This extension displays the first inline comment on a confluence page |
Ukuran File | 14.21 KB |
Jumlah Instalasi | 55 |
Versi Saat Ini | 0.4 |
Terakhir Diperbarui | 2020-02-20 |
Tanggal Publikasi | 2020-02-20 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | wd.cristian |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |