Matches
此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.cn-greasyfork.org/scripts/525262/1529298/Marlon2.js
// ==UserScript==
// @name Autodarts Freundesliste - Matches Seite
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Freundesliste auf der Matches-Seite von Autodarts
// @author Dein Name
// @match https://play.autodarts.io/matches
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(function() {
console.log('Aktualisiere Match-Daten...');
// Logik zum Überprüfen des Spielerstatus hinzufügen
}, 5000);
})();