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