Confluence Inline Comments

This extension displays the first inline comment on a confluence page

Что такое Confluence Inline Comments?

Confluence Inline Comments - это расширение Chrome, разработанное wd.cristian, и его основная функция - "This extension displays the first inline comment on a confluence page".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Confluence Inline Comments

Скачайте файлы расширений Confluence Inline Comments в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Confluence Inline Comments Confluence Inline Comments
ID hpfpfnjedfphnnfdfklkbejachlfoeog
Официальный URL https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog
Описание This extension displays the first inline comment on a confluence page
Размер файла 14.21 KB
Количество установок 55
Текущая Версия 0.4
Последнее Обновление 2020-02-20
Дата публикации 2020-02-20
Рейтинг 5.00/5 Всего 2 оценок
Разработчик wd.cristian
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    ]
}