Confluence Inline Comments
This extension displays the first inline comment on a confluence page
Hvad er Confluence Inline Comments?
Confluence Inline Comments er en Chrome-udvidelse udviklet af wd.cristian, og dens hovedfunktion er "This extension displays the first inline comment on a confluence page".
Udvidelsesskærmbilleder
Download Confluence Inline Comments-udvidelses-CRX-fil
Download Confluence Inline Comments-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Confluence Inline Comments |
ID | hpfpfnjedfphnnfdfklkbejachlfoeog |
Officiel URL | https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog |
Beskrivelse | This extension displays the first inline comment on a confluence page |
Filstørrelse | 14.21 KB |
Antal Installationer | 55 |
Nuværende Version | 0.4 |
Senest Opdateret | 2020-02-20 |
Udgivelsesdato | 2020-02-20 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | wd.cristian |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |