Hue Notifier for Hadoop

Notify when Hue finished execution of job

什麼是Hue Notifier for Hadoop?

Hue Notifier for Hadoop是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Notify when Hue finished execution of job”。

擴展截圖

screenshot
screenshot

下載Hue Notifier for Hadoop擴展crx文件

下載Hue Notifier for Hadoop擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Hue Notifier for Hadoop Hue Notifier for Hadoop
ID nphihgndmlbjaenficpnlmaoalpcgioi
官方網址 https://chromewebstore.google.com/detail/hue-notifier-for-hadoop/nphihgndmlbjaenficpnlmaoalpcgioi
簡介 Notify when Hue finished execution of job
檔案大小 4.88 KB
安裝次數 64
目前版本 0.2.2
更新時間 2013-12-10
上架時間 2013-12-10
評分 4.50/5 共 4 次評分
開發者 Unknown
付費類型 free
說明頁面URL https://github.com/mwacc/hue-chrome
支援的語言 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"
        ]
    }
}