HangHub

HangHub allows you to see who is viewing or commenting on the same GitHub issue or pull request as you in real time.

Что такое HangHub?

HangHub - это расширение Chrome, разработанное CKSource, и его основная функция - "HangHub allows you to see who is viewing or commenting on the same GitHub issue or pull request as you in real time.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        HangHub is a team productivity tool that allows you to see the users who are working on the same GitHub issue or pull request as you in real time. 

With HangHub, you will be able to check whether other users are viewing, away, editing, commenting, or merging. You can disable the extension for specific organizations or repositories.

After you install HangHub, you will never have to worry about wasting time working on the exact same thing as your teammates at the same time.                    

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

Название HangHub HangHub
ID egnoioofamlapfbecfkjgeobkfmfflfo
Официальный URL https://chromewebstore.google.com/detail/hanghub/egnoioofamlapfbecfkjgeobkfmfflfo
Описание HangHub allows you to see who is viewing or commenting on the same GitHub issue or pull request as you in real time.
Размер файла 50.42 KB
Количество установок 54
Текущая Версия 1.0.5
Последнее Обновление 2020-12-18
Дата публикации 2019-09-16
Рейтинг 5.00/5 Всего 2 оценок
Разработчик CKSource
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/ckeditor/hanghub
URL страницы помощи https://github.com/ckeditor/hanghub
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HangHub",
    "version": "1.0.5",
    "description": "HangHub allows you to see who is viewing or commenting on the same GitHub issue or pull request as you in real time.",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "*:\/\/hanghub.cksource.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "index.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon128.png",
        "default_popup": "popup.html",
        "default_title": "HangHub"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "manifest_version": 2
}