Confluence Inline Comments
This extension displays the first inline comment on a confluence page
Wat is Confluence Inline Comments?
Confluence Inline Comments is een Chrome-extensie ontwikkeld door wd.cristian, en de belangrijkste functie is "This extension displays the first inline comment on a confluence page".
Extensie Screenshots
Download het CRX-bestand van de extensie Confluence Inline Comments
Download Confluence Inline Comments-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Confluence Inline Comments |
ID | hpfpfnjedfphnnfdfklkbejachlfoeog |
Officiële URL | https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog |
Beschrijving | This extension displays the first inline comment on a confluence page |
Bestandsgrootte | 14.21 KB |
Aantal Installaties | 55 |
Huidige Versie | 0.4 |
Laatst Bijgewerkt | 2020-02-20 |
Publicatiedatum | 2020-02-20 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | wd.cristian |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |