HangHub

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

¿Qué es HangHub?

HangHub es una extensión de Chrome desarrollada por CKSource, y su función principal es "HangHub allows you to see who is viewing or commenting on the same GitHub issue or pull request as you in real time.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión HangHub

Descarga archivos de extensión HangHub en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre HangHub HangHub
ID egnoioofamlapfbecfkjgeobkfmfflfo
URL Oficial https://chromewebstore.google.com/detail/hanghub/egnoioofamlapfbecfkjgeobkfmfflfo
Descripción HangHub allows you to see who is viewing or commenting on the same GitHub issue or pull request as you in real time.
Tamaño del Archivo 50.42 KB
Cantidad de Instalaciones 54
Versión Actual 1.0.5
Última Actualización 2020-12-18
Fecha de Publicación 2019-09-16
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador CKSource
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/ckeditor/hanghub
URL de la Página de Ayuda https://github.com/ckeditor/hanghub
Idiomas Soportados 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
}