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
官方URL 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"
        ]
    }
}