Hue Notifier for Hadoop

Notify when Hue finished execution of job

Co je Hue Notifier for Hadoop?

Hue Notifier for Hadoop je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Notify when Hue finished execution of job“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Hue Notifier for Hadoop

Stáhněte si soubory rozšíření Hue Notifier for Hadoop 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í

                        This is common situation when Hive query or Pig script on Hadoop requires a lot of time for executing and you are interesting in getting notification about completing process. 

This extension facilitate development on Hadoop platform and save your time by showing desktop notification when execution is done.

Currently next tools are supported:
- Hive/Impala on Cloudera (tested on CDH4)
- Hive/Pig on Hortonworks (tested on HDP 1.3, HDP 2.0)

IMPORTANT!
Please, enable Chrome Notifications before using, read more here Read more https://support.google.com/chrome/answer/3220216?hl=en-GB                    

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

Název Hue Notifier for Hadoop Hue Notifier for Hadoop
ID nphihgndmlbjaenficpnlmaoalpcgioi
Oficiální URL https://chromewebstore.google.com/detail/hue-notifier-for-hadoop/nphihgndmlbjaenficpnlmaoalpcgioi
Popis Notify when Hue finished execution of job
Velikost souboru 4.88 KB
Počet instalací 64
Aktuální Verze 0.2.2
Poslední Aktualizace 2013-12-10
Datum Vydání 2013-12-10
Hodnocení 4.50/5 Celkem 4 Hodnocení
Vývojář Unknown
Typ Platby free
URL Stránky Nápovědy https://github.com/mwacc/hue-chrome
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hue Notifier for Hadoop",
    "short_name": "Hue Notifier",
    "version": "0.2.2",
    "author": "Kostiantyn Kudriavtsev",
    "manifest_version": 2,
    "description": "Notify when Hue finished execution of job",
    "permissions": [
        "notifications",
        "tabs",
        "*:\/\/*\/beeswax\/results\/*",
        "*:\/\/*\/impala\/results\/*",
        "*:\/\/*\/pig\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/beeswax\/results\/*",
                "*:\/\/*\/impala\/results\/*",
                "*:\/\/*\/pig\/*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}