bhavul
1/20/2019 - 8:16 PM

Tampermonkey Extensions

// ==UserScript==
// @name         Hive Query Status
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  This tells you about the status of the Hive Queries
// @author       Bhavul Gauri
// @match        http://10.0.6.100:8889/*
// @match        http://ip-10-0-6-100.ap-southeast-1.compute.internal:8889/*
// @grant       GM_notification
// @grant       window.focus
// ==/UserScript==
// Chrome Notifications!


setInterval(function() {
    if (document.documentElement.textContent.indexOf('INFO  : OK') > -1)
    {
        GM_notification({
            title: 'Query done.',
            text: 'Your hive query has been successfully completed.',
            timeout : 6000,
            image: 'https://i.stack.imgur.com/geLPT.png'
        });
    }
}, 10000);