Greasy Fork 支持简体中文。

Marlon 1

Lobbie

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.cn-greasyfork.org/scripts/525261/1529297/Marlon%201.js

// ==UserScript==
// @name         Autodarts Freundesliste - Lobbies Seite
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Freundesliste auf der Lobbies-Seite von Autodarts
// @author       Dein Name
// @match        https://play.autodarts.io/lobbies
// @grant        none
// ==/UserScript==
 
(function() {
    'use strict';
 
    setInterval(function() {
        console.log('Aktualisiere Lobby-Daten...');
        // Logik zum Überprüfen des Spielerstatus hinzufügen
    }, 5000);
})();