Confluence Inline Comments
This extension displays the first inline comment on a confluence page
Was ist Confluence Inline Comments?
Confluence Inline Comments ist eine Chrome-Erweiterung, die von wd.cristian entwickelt wurde, und ihr Hauptmerkmal ist "This extension displays the first inline comment on a confluence page".
Erweiterungsscreenshots
Confluence Inline Comments-Erweiterungs-CRX-Datei herunterladen
Laden Sie Confluence Inline Comments-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Confluence Inline Comments |
ID | hpfpfnjedfphnnfdfklkbejachlfoeog |
Offizielle URL | https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog |
Beschreibung | This extension displays the first inline comment on a confluence page |
Dateigröße | 14.21 KB |
Installationsanzahl | 55 |
Aktuelle Version | 0.4 |
Letztes Update | 2020-02-20 |
Veröffentlichungsdatum | 2020-02-20 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | wd.cristian |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |