Confluence Inline Comments

This extension displays the first inline comment on a confluence page

O que é Confluence Inline Comments?

Confluence Inline Comments é uma extensão do Chrome desenvolvida por wd.cristian, e sua principal característica é "This extension displays the first inline comment on a confluence page".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Confluence Inline Comments

Baixe arquivos de extensão Confluence Inline Comments no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Confluence Inline Comments Confluence Inline Comments
ID hpfpfnjedfphnnfdfklkbejachlfoeog
URL Oficial https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog
Descrição This extension displays the first inline comment on a confluence page
Tamanho do Arquivo 14.21 KB
Contagem de Instalações 55
Versão Atual 0.4
Última Atualização 2020-02-20
Data de Publicação 2020-02-20
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor wd.cristian
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}