Confluence Inline Comments
This extension displays the first inline comment on a confluence page
Cos'è Confluence Inline Comments?
Confluence Inline Comments è un'estensione di Chrome sviluppata da wd.cristian, e la sua funzione principale è "This extension displays the first inline comment on a confluence page".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Confluence Inline Comments
Scarica i file di estensione Confluence Inline Comments in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | hpfpfnjedfphnnfdfklkbejachlfoeog |
| URL Ufficiale | https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog |
| Descrizione | This extension displays the first inline comment on a confluence page |
| Dimensione del File | 14.21 KB |
| Conteggio Installazioni | 55 |
| Versione Corrente | 0.4 |
| Ultimo Aggiornamento | 2020-02-20 |
| Data di Pubblicazione | 2020-02-20 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | wd.cristian |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |