Confluence Inline Comments

This extension displays the first inline comment on a confluence page

Co to jest Confluence Inline Comments?

Confluence Inline Comments to rozszerzenie Chrome opracowane przez wd.cristian, a jego główną funkcją jest „This extension displays the first inline comment on a confluence page”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Confluence Inline Comments

Pobierz pliki rozszerzeń Confluence Inline Comments w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Confluence Inline Comments Confluence Inline Comments
ID hpfpfnjedfphnnfdfklkbejachlfoeog
Oficjalny URL https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog
Opis This extension displays the first inline comment on a confluence page
Rozmiar pliku 14.21 KB
Liczba instalacji 55
Aktualna Wersja 0.4
Ostatnia Aktualizacja 2020-02-20
Data Publikacji 2020-02-20
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper wd.cristian
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}