Confluence Inline Comments
This extension displays the first inline comment on a confluence page
Co je Confluence Inline Comments?
Confluence Inline Comments je rozšíření Chrome vyvinuté wd.cristian, a jeho hlavní funkcí je „This extension displays the first inline comment on a confluence page“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Confluence Inline Comments
Stáhněte si soubory rozšíření Confluence Inline Comments ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Confluence Inline Comments |
ID | hpfpfnjedfphnnfdfklkbejachlfoeog |
Oficiální URL | https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog |
Popis | This extension displays the first inline comment on a confluence page |
Velikost souboru | 14.21 KB |
Počet instalací | 55 |
Aktuální Verze | 0.4 |
Poslední Aktualizace | 2020-02-20 |
Datum Vydání | 2020-02-20 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | wd.cristian |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" ] } |