Hue Notifier for Hadoop

Hue Notifier for Hadoop

Notify when Hue finished execution of job

Merlin
Additional files are visible only to premium users

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"
    ]
  }
}