IdleScape Idle Notification - Mellow

Plays a sound when you're idling in Idlescape

  1. // ==UserScript==
  2. // @name IdleScape Idle Notification - Mellow
  3. // @namespace D4IS
  4. // @version 0.2
  5. // @description Plays a sound when you're idling in Idlescape
  6. // @author D4M4G3X
  7. // @match http*://*idlescape.com/game
  8. // @grant none
  9. // ==/UserScript==
  10. (function() {
  11. 'use strict';
  12. var checkExist = setInterval(function() {
  13. var status = document.getElementsByClassName("status-action")[0].innerHTML
  14. if (~status.toLowerCase().indexOf('idling')) {
  15. var audio = new Audio('https://www.trekcore.com/audio/redalertandklaxons/voy_redalert.mp3'); // Edit sound here
  16. audio.play();
  17. }
  18. }, 10000);
  19. })();