IdleScape Idle Notification - Mellow

Plays a sound when you're idling in Idlescape

// ==UserScript==
// @name         IdleScape Idle Notification - Mellow
// @namespace    D4IS
// @version      0.2
// @description  Plays a sound when you're idling in Idlescape
// @author       D4M4G3X
// @match        http*://*idlescape.com/game
// @grant        none
// ==/UserScript==
 
(function() {
    'use strict';
 
    var checkExist = setInterval(function() {
        var status = document.getElementsByClassName("status-action")[0].innerHTML
        if (~status.toLowerCase().indexOf('idling')) {
            var audio = new Audio('https://www.trekcore.com/audio/redalertandklaxons/voy_redalert.mp3'); // Edit sound here
            audio.play();
        }
    }, 10000);
})();