DynamoAlarm

🌲kattn

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name        DynamoAlarm
// @namespace   Zweitmarkt Alarm
// @match       *://karten.dynamo-dresden.de/*
// @grant       none
// @version     1.8.7
// @author      -
// @description 🌲kattn
// ==/UserScript==

const bodyEl = document.body.textContent.toLowerCase();
if (bodyEl.includes("19. ligaheimspiel")) {
  new Audio("http://dl.dropboxusercontent.com/scl/fi/3901qni32qqrwzimcb6vg/alarm.mp3?rlkey=6pvo79inlqhhgxrzmftbo7h9f&st=istrp926&dl=0").play()

  document.getElementsByTagName("body")[0].style = "background: green";
} else {
  setTimeout(() => {
    location.reload()
  }, 5000)
}