Confluence Inline Comments
This extension displays the first inline comment on a confluence page
Qu'est-ce que Confluence Inline Comments ?
Confluence Inline Comments est une extension Chrome développée par wd.cristian, et sa fonction principale est "This extension displays the first inline comment on a confluence page".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Confluence Inline Comments
Téléchargez les fichiers d'extension Confluence Inline Comments au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Confluence Inline Comments |
ID | hpfpfnjedfphnnfdfklkbejachlfoeog |
URL Officiel | https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog |
Description | This extension displays the first inline comment on a confluence page |
Taille du Fichier | 14.21 KB |
Nombre d'Installations | 55 |
Version Actuelle | 0.4 |
Dernière Mise à Jour | 2020-02-20 |
Date de Publication | 2020-02-20 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | wd.cristian |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |