HangHub

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

Co je HangHub?

HangHub je rozšíření Chrome vyvinuté CKSource, a jeho hlavní funkcí je „HangHub allows you to see who is viewing or commenting on the same GitHub issue or pull request as you in real time.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření HangHub

Stáhněte si soubory rozšíření HangHub ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název HangHub HangHub
ID egnoioofamlapfbecfkjgeobkfmfflfo
Oficiální URL https://chromewebstore.google.com/detail/hanghub/egnoioofamlapfbecfkjgeobkfmfflfo
Popis HangHub allows you to see who is viewing or commenting on the same GitHub issue or pull request as you in real time.
Velikost souboru 50.42 KB
Počet instalací 54
Aktuální Verze 1.0.5
Poslední Aktualizace 2020-12-18
Datum Vydání 2019-09-16
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář CKSource
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/ckeditor/hanghub
URL Stránky Nápovědy https://github.com/ckeditor/hanghub
Podporované Jazyky 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
}